chore: reorder use

This commit is contained in:
2021-07-18 12:31:33 +08:00
parent 3e5385e268
commit e9ba9c5f51
10 changed files with 20 additions and 21 deletions

View File

@@ -1,12 +1,12 @@
use std::sync::mpsc::channel;
use clap::{ArgMatches, SubCommand, App, Arg};
use authenticator::{KeyHandle, AuthenticatorTransports, SignFlags};
use std::sync::mpsc::channel;
use authenticator::statecallback::StateCallback;
use authenticator::authenticatorservice::AuthenticatorService;
use rust_util::util_clap::{Command, CommandError};
use crate::fido;
use crate::digest;
use crate::fido::U2fV2Challenge;
use rust_util::util_clap::{Command, CommandError};
pub struct CommandImpl;