From e469576d2c3a995beeaff32f455832227aa62db8 Mon Sep 17 00:00:00 2001 From: QuirinEcker Date: Wed, 8 Mar 2023 20:43:36 +0100 Subject: [PATCH] made some changes to the structure --- src/app/args/structure.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }