octopush/cmd/kraken/commands/root.go

15 lines
254 B
Go
Raw Normal View History

2022-09-10 00:09:09 +02:00
package commands
import "github.com/spf13/cobra"
2022-09-21 11:06:53 +02:00
func CreateOctopushCmd() *cobra.Command {
2022-09-10 00:09:09 +02:00
cmd := &cobra.Command{
2022-09-21 11:06:53 +02:00
Use: "octopush",
2022-09-10 00:09:09 +02:00
// Run: func(cmd *cobra.Command, args []string) { },
}
2022-09-21 11:06:53 +02:00
cmd.AddCommand(CreateOctopushProcessCmd())
2022-09-10 00:09:09 +02:00
return cmd
}