1use clap::Parser; 2 3#[derive(Parser, Debug, Clone)] 4#[clap(name = "dfl", author = "ro80t")] 5#[command(version, about, flatten_help = true)] 6struct Args {} 7 8pub fn cli() { 9 let _args = Args::parse(); 10}