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 }