index : gmss.git

ascending towards madness

use clap::Parser;

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