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)]
command: Option<String>,
/// Location of the file to run.
#[arg(short, long)]
path: Option<String>,
// Whether to launch the dedicated GUI window.
#[arg(short, long)]
gui: bool,
/// Location of the file to run.
path: Option<String>,
}
fn main() {