diff --git a/src/app/args/structure.rs b/src/app/args/structure.rs index 742483c..4f5f53f 100644 --- a/src/app/args/structure.rs +++ b/src/app/args/structure.rs @@ -3,10 +3,12 @@ use clap::{Parser, Subcommand}; #[derive(Parser)] pub struct Args { #[command(subcommand)] - command: Option + command: CommandArg } #[derive(Subcommand)] enum CommandArg { Build, + Health, + InstallReveal }