Files
kubeshark/cli/cmd/view.go
gadotroee 2f33f9229a TRA-3234 Fetch command (#54)
* preparation to fetch command

* get har as zip from server

* no message

* no message
2021-05-24 19:29:46 +03:00

20 lines
288 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)
}