kanidm_ssh_authorizedkeys/opt/
ssh_authorizedkeys.rs

1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Parser)]
#[command(name = "kanidm_ssh_authorizedkeys")]
struct SshAuthorizedOpt {
    #[clap(short, long)]
    debug: bool,
    #[clap()]
    account_id: Option<String>,
    #[clap(short, long, action = clap::ArgAction::SetTrue)]
    version: bool,
}