package cmd import ( "github.com/spf13/cobra" ) var channelCmd = &cobra.Command{ Use: "channel", Short: "Manage channels", Long: `Manage channels. A channel is a group of sources that can be viewed together. Adding a source to a channel creates it and removing all sources from a channel deletes it. `, } func init() { rootCmd.AddCommand(channelCmd) }