kubeshark/cli/cmd/clean.go
2022-07-19 12:29:48 +03:00

19 lines
282 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var cleanCmd = &cobra.Command{
Use: "clean",
Short: "Removes all mizu resources",
RunE: func(cmd *cobra.Command, args []string) error {
performCleanCommand()
return nil
},
}
func init() {
rootCmd.AddCommand(cleanCmd)
}