octopush/cmd/kraken/commands/root.go
2022-09-21 11:06:53 +02:00

15 lines
254 B
Go

package commands
import "github.com/spf13/cobra"
func CreateOctopushCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "octopush",
// Run: func(cmd *cobra.Command, args []string) { },
}
cmd.AddCommand(CreateOctopushProcessCmd())
return cmd
}