package cmd import ( "log" "github.com/spf13/cobra" ) var channelEditCmd = &cobra.Command{ Use: "edit", Short: "Edit a channel", Long: ` `, Run: func(cmd *cobra.Command, args []string) { log.Fatal("not implemented") }, } func init() { channelCmd.AddCommand(channelEditCmd) }