X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=ocd%2Fcli%2Fealt%2Fcmd%2Fapp.go;h=7a1399ee359b0a77e0dc7c191ec3ff2e4d2e096c;hb=8695c40afdce738a635e201d9e3f32d52f8d720f;hp=96a80f769ae3bdd2b00b837ac3a23b18a83fa938;hpb=caf01eef6ab04caccb08847930d2729794784b64;p=ealt-edge.git diff --git a/ocd/cli/ealt/cmd/app.go b/ocd/cli/ealt/cmd/app.go index 96a80f7..7a1399e 100644 --- a/ocd/cli/ealt/cmd/app.go +++ b/ocd/cli/ealt/cmd/app.go @@ -26,12 +26,13 @@ var appCmd = &cobra.Command{ Use: "app", Short: "The command is used for Application Management in the EALT Edge System.", Long: `The command is used for Application Management in the EALT Edge System. - It has options: create , delete`, + It has options: create , info and delete`, } func init() { appCmd.AddCommand(appCmds.NewAppCreateCommand()) appCmd.AddCommand(appCmds.NewAppDeleteCommand()) + appCmd.AddCommand(appCmds.NewAppInfoCommand()) rootCmd.AddCommand(appCmd) }