1use clap::Parser; 2 3#[derive(Debug, Parser)] 4pub struct Args { 5 /// Input file 6 #[arg(long, short)] 7 pub infile: Option<String>, 8 /// Output file 9 #[arg(long, short)] 10 pub outfile: Option<String>, 11 /// Silent mode 12 #[arg(long)] 13 pub silent: bool, 14}