1
2
3
4
5
6
7
8
9
use clap_derive::Parser;

#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
pub struct Args {
    /// Location of configuration file
    #[arg(short, long)]
    pub config: Option<String>,
}