From ee8e59b898e02f2d52275c1e9a0912a44506653e Mon Sep 17 00:00:00 2001 From: Quaternions Date: Fri, 12 Jan 2024 11:20:22 -0800 Subject: [PATCH] rearrange and comment args --- src/main.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index c1a526f..0d5e7f6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,8 +13,11 @@ const CONCURRENT_REQUESTS:usize=32; #[command(author,version,about,long_about=None)] #[command(propagate_version = true)] struct Cli{ + //asset options #[arg(short,long)] group:Option, + #[arg(long)] + asset_id:Option, //idk how to do this better #[arg(long)] cookie_literal:Option, @@ -23,6 +26,7 @@ struct Cli{ #[arg(long)] cookie_file:Option, + //decompile options #[arg(long)] no_models:Option, #[arg(long)] @@ -30,14 +34,12 @@ struct Cli{ #[arg(long)] no_template:Option, + //git options #[arg(long)] git_committer_name:Option, #[arg(long)] git_committer_email:Option, - #[arg(long)] - asset_id:Option, - #[arg(short,long)] input:Option,