diff options
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/jvii.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/bin/jvii.rs b/src/bin/jvii.rs new file mode 100644 index 0000000..e7a20bb --- /dev/null +++ b/src/bin/jvii.rs @@ -0,0 +1,19 @@ +#[derive(Parser, Debug)] +#[command( + disable_help_flag = true, + disable_version_flag = true, + disable_help_subcommand = true, + help_template = "{all-args}" +)] + +struct JustEnoughVcsInputer { + #[command(subcommand)] + command: JustEnoughVcsInputerCommand, +} + +#[derive(Subcommand, Debug)] +enum JustEnoughVcsInputerCommand { + /// Version information + #[command(alias = "--version", alias = "-v")] + Version(VersionArgs), +} |
