Files
kubeshark/cli/cmd/view.go
2021-06-06 17:00:23 +03:00

19 lines
264 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var viewCmd = &cobra.Command{
Use: "view",
Short: "Open GUI in browser",
RunE: func(cmd *cobra.Command, args []string) error {
runMizuView()
return nil
},
}
func init() {
rootCmd.AddCommand(viewCmd)
}