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