CLI cleanup (#33)

* Moved cli root command to tap subcommand.

* tap subcommand works.

* Added view and fetch placeholders.

* Updated descriptions.

* Fixed indentation.

* Added versio subcommand.

* Removed version flag.

* gofmt.

* Changed pod from flag to arg.

* Commented out "all namespaces" flag.
This commit is contained in:
nimrod-up9
2021-05-06 17:43:22 +03:00
committed by GitHub
parent c7a20ed9c0
commit 6ceaa56474
8 changed files with 125 additions and 52 deletions

19
cli/cmd/view.go Normal file
View File

@@ -0,0 +1,19 @@
package cmd
import (
"errors"
"github.com/spf13/cobra"
)
var viewCmd = &cobra.Command{
Use: "view",
Short: "Open GUI in browser",
RunE: func(cmd *cobra.Command, args []string) error {
return errors.New("Not implemented")
},
}
func init() {
rootCmd.AddCommand(viewCmd)
}