From a038bf9f20250945772c9c0760c5bbfc71ae8d0f Mon Sep 17 00:00:00 2001 From: Akilan Selvacoumar <31743758+Akilan1999@users.noreply.github.com> Date: Thu, 8 Jun 2023 16:49:27 +0100 Subject: [PATCH] Update CliImplementation.md --- Docs/CliImplementation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/CliImplementation.md b/Docs/CliImplementation.md index 5464187..20e6cde 100644 --- a/Docs/CliImplementation.md +++ b/Docs/CliImplementation.md @@ -6,7 +6,7 @@ commands as possible. The cli was built using the library called urfave cli v2 . major files created named as flags.go and actions.go. ### Flags.go The flags .go file is responsible to create the appropriate flags for the cli. There are 2 types of flags -called boolean and string as described in Fig 5.3.1. Each of the flags outputs are assigned to a +called boolean and string. Each of the flags outputs are assigned to a variable to be handled. The flags can also detect environment variables set. This feature is useful because if the user wants to call certain flags in a repeated sequence it only has to be initialized once. @@ -14,4 +14,4 @@ once. ### Actions.go The actions.go file is implemented to call the appropriate functions when the flags are called. It interacts directly with the modules in the project. Action.go checks if variables -are not empty string or the boolean value is true. \ No newline at end of file +are not empty string or the boolean value is true.