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