1use clap::Parser; 2use std::path::PathBuf; 3 4#[derive(Parser)] 5#[command(version, about, long_about = None)] 6pub struct Cli { 7 pub config_file: PathBuf, 8 9 #[arg(long)] 10 pub verbose: bool, 11 12 #[arg(long)] 13 pub email: Option<bool>, 14}