intake/cmd/channel.go

20 lines
363 B
Go
Raw Normal View History

2025-01-21 16:42:59 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
var channelCmd = &cobra.Command{
Use: "channel",
Short: "Manage channels",
2025-02-01 01:23:41 +00:00
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.
2025-01-21 16:42:59 +00:00
`,
}
func init() {
rootCmd.AddCommand(channelCmd)
}