intake/cmd/channel.go
2025-01-31 17:24:30 -08:00

20 lines
363 B
Go

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)
}