use clap::Parser;
const ABOUT: &str = "Show information about your identity and device";
#[derive(Debug, Parser)]
#[command(about = ABOUT, disable_version_flag = true)]
#[group(multiple = false)]
pub struct Args {
#[arg(long)]
pub(super) did: bool,
#[arg(long)]
pub(super) alias: bool,
#[arg(long, hide(true))]
pub(super) nid: bool,
#[arg(long)]
pub(super) home: bool,
#[arg(long)]
pub(super) config: bool,
#[arg(long)]
pub(super) ssh_key: bool,
#[arg(long)]
pub(super) ssh_fingerprint: bool,
}