use clap::Parser; #[derive(Parser, Debug)] pub struct Args { /// The output directory or file path to write to. /// /// If a directory is specified, a filename will be generated based on /// the current date and time. #[arg(short, long, value_name = "LOCATION")] pub out: String, }