Documentation ¶
Index ¶
Constants ¶
View Source
const ( ErrFilterNameOrIDCode = "1096" ErrFetchFilterCode = "1097" )
Please reference the following before contributing an error code: https://docs.meshery.io/project/contributing/contributing-error https://github.com/meshery/meshkit/blob/master/errors/errors.go
Variables ¶
View Source
var FilterCmd = &cobra.Command{ Use: "filter", Short: "Cloud Native Filter Management", Long: ``, Example: ` // Base command for WASM filters mesheryctl filter [subcommands] `, 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.FilterError(fmt.Sprintf("'%s' is a invalid command. Use 'mesheryctl filter --help' to display usage guide.\n", args[0]))) } return nil }, }
FilterCmd represents the root command for filter commands
Functions ¶
func ErrFetchFilter ¶ added in v0.6.137
func ErrFilterNameOrID ¶ added in v0.6.137
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.