feat: fix compile issue, code style

This commit is contained in:
2023-12-23 15:53:26 +08:00
parent a3d101a405
commit 171cd2d2a4
5 changed files with 32 additions and 2 deletions

View File

@@ -21,14 +21,18 @@ pub struct CmdExecEnv {
/// PGP or PIV PIN
#[arg(long, short = 'p')]
pub pin: Option<String>,
/// KeyID
#[arg(long, short = 'k')]
pub key_id: Option<String>,
/// PIV slot
#[arg(long, short = 's')]
pub slot: Option<String>,
/// Tiny encrypt file name
pub file_name: String,
/// Command and arguments
pub command_arguments: Vec<String>,
}