chore: use_clap & clippy

This commit is contained in:
2021-07-18 12:08:59 +08:00
parent bcf097292f
commit d44df83c7f
13 changed files with 49 additions and 49 deletions

View File

@@ -1,7 +1,7 @@
use clap::{ArgMatches, SubCommand, App, Arg};
use crate::cmd::{Command, CommandError};
use openpgp_card::DecryptMe;
use std::collections::BTreeMap;
use rust_util::util_clap::{Command, CommandError};
pub struct CommandImpl;
@@ -56,6 +56,6 @@ impl Command for CommandImpl {
println!("{}", serde_json::to_string_pretty(&json).unwrap());
}
Ok(())
Ok(None)
}
}