Change command line arguments

This commit is contained in:
Jeff 2023-08-23 00:39:46 -04:00
parent 90ebe3b8f5
commit 26a71585f0

View File

@ -25,12 +25,12 @@ struct Args {
#[arg(short, long)] #[arg(short, long)]
command: Option<String>, command: Option<String>,
/// Location of the file to run. // Whether to launch the dedicated GUI window.
#[arg(short, long)]
path: Option<String>,
#[arg(short, long)] #[arg(short, long)]
gui: bool, gui: bool,
/// Location of the file to run.
path: Option<String>,
} }
fn main() { fn main() {