intake/cmd/channelAdd.go

22 lines
290 B
Go
Raw Permalink Normal View History

2025-01-21 16:42:59 +00:00
package cmd
import (
"log"
"github.com/spf13/cobra"
)
var channelAddCmd = &cobra.Command{
Use: "add",
Short: "Create a channel",
Long: `
`,
Run: func(cmd *cobra.Command, args []string) {
log.Fatal("not implemented")
},
}
func init() {
channelCmd.AddCommand(channelAddCmd)
}