feat: add openpgp card list

This commit is contained in:
2021-07-09 00:48:48 +08:00
parent 1f49b46682
commit c5e105ebc9
5 changed files with 786 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ mod fido;
mod digest;
mod register;
mod sign;
mod pgpcardlist;
use clap::{App, AppSettings};
use cmd::{Command, CommandError};
@@ -15,6 +16,7 @@ fn main() -> CommandError {
let commands: Vec<Box<dyn Command>> = vec![
Box::new(register::CommandImpl),
Box::new(sign::CommandImpl),
Box::new(pgpcardlist::CommandImpl),
];
let mut app = App::new(env!("CARGO_PKG_NAME"))
.version(env!("CARGO_PKG_VERSION"))