chore: reorg use

This commit is contained in:
2022-03-27 12:50:48 +08:00
parent e4206dfaa8
commit d36aca00a0
14 changed files with 61 additions and 49 deletions

View File

@@ -1,9 +1,10 @@
use std::ops::Deref;
use clap::{ArgMatches, SubCommand, App, Arg};
use yubico_manager::Yubico;
use yubico_manager::config::{Config, Mode, Slot};
use rust_util::util_clap::{Command, CommandError};
use std::collections::BTreeMap;
use std::ops::Deref;
use clap::{App, Arg, ArgMatches, SubCommand};
use rust_util::util_clap::{Command, CommandError};
use yubico_manager::config::{Config, Mode, Slot};
use yubico_manager::Yubico;
pub struct CommandImpl;