Files
kubeshark/cli/cmd/fetch.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
298 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
var fetchCmd = &cobra.Command{
Use: "fetch",
Short: "Download recorded traffic",
RunE: func(cmd *cobra.Command, args []string) error {
fmt.Println("Not implemented")
return nil
},
}
func init() {
rootCmd.AddCommand(fetchCmd)
}