Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AppCmd = &cobra.Command{ Use: "app", Short: "Service Mesh Apps Management", Long: `Manage all apps operations; import, list, view, onboard and offboard`, Example: ` // Base command mesheryctl app [subcommand] `, RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { return cmd.Help() } if ok := utils.IsValidSubcommand(availableSubcommands, args[0]); !ok { return errors.New(utils.AppError(fmt.Sprintf("'%s' is a invalid command. Use 'mesheryctl app --help' to display usage guide.\n", args[0]))) } return nil }, }
AppCmd represents the root command for app commands
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.