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{
Use: "kraken",
2022-09-10 00:09:09 +02:00
// Run: func(cmd *cobra.Command, args []string) { },
}
cmd.AddCommand(CreateKrakenProcessCmd())
2022-09-10 00:09:09 +02:00
return cmd
}