matrix_math/structs/
mod.rs

1use clap::Parser;
2
3#[derive(Parser, Debug, Default)]
4#[command(version, about, long_about = None)]
5pub struct Args {
6    /// Whether you want to use User Input or have predefined values.
7    #[arg(short, long, default_value_t = true)]
8    pub interactive: bool,
9}