Files
kubeshark/cli/cmd/view.go
nimrod-up9 506e36fbdc CLI cleanup 2 (#34)
* Renamed dashboard -> GUI/web interface.

* Commented out --quiet, removed unused config variables.

* Quiter output when calling unimplemented subcommands.
2021-05-06 18:30:01 +03:00

21 lines
289 B
Go

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