github.com/kubeshop/testkube@v1.17.23/cmd/kubectl-testkube/commands/pro.go (about) 1 package commands 2 3 import ( 4 "github.com/spf13/cobra" 5 6 "github.com/kubeshop/testkube/cmd/kubectl-testkube/commands/pro" 7 ) 8 9 func NewProCmd() *cobra.Command { 10 11 cmd := &cobra.Command{ 12 Use: "pro", 13 Short: "Testkube Pro commands", 14 Run: func(cmd *cobra.Command, args []string) { 15 }, 16 } 17 18 cmd.AddCommand(pro.NewConnectCmd()) 19 cmd.AddCommand(pro.NewDisconnectCmd()) 20 cmd.AddCommand(pro.NewInitCmd()) 21 cmd.AddCommand(pro.NewLoginCmd()) 22 23 return cmd 24 }