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