octopush/cmd/kraken/commands/root.go

15 lines
248 B
Go
Raw Normal View History

2022-09-10 00:09:09 +02:00
package commands
import "github.com/spf13/cobra"
func CreateKrakenCmd() *cobra.Command {
cmd := &cobra.Command{
2022-09-11 22:56:54 +02:00
Use: "kraken",
2022-09-10 00:09:09 +02:00
// Run: func(cmd *cobra.Command, args []string) { },
}
2022-09-11 22:56:54 +02:00
cmd.AddCommand(CreateKrakenProcessCmd())
2022-09-10 00:09:09 +02:00
return cmd
}