use crate::commands::command::Cmd;
use crate::error::KeyToolError;
use clap::Args;
#[derive(Args, Debug, Clone)]
pub struct PrintCRLCmd {
/// CRL file path
#[arg(long)]
pub file: String,
}
impl Cmd for PrintCRLCmd {
fn run(&self) -> Result<(), KeyToolError> {
println!("执行 printcrl 命令,参数: {:?}", self);
Ok(())
}
}