package cmd import ( "log" "github.com/spf13/cobra" ) var actionDeleteCmd = &cobra.Command{ Use: "delete", Short: "Delete an action from a source", Long: ` `, Run: func(cmd *cobra.Command, args []string) { log.Fatal("not implemented") }, } func init() { actionCmd.AddCommand(actionDeleteCmd) }