Added Get Operation and Bug Fixes
[ealt-edge.git] / ocd / cli / ealt / cmd / app.go
index 96a80f7..7a1399e 100644 (file)
@@ -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)
 }