gospt/cmd/radio.go

21 lines
320 B
Go
Raw Normal View History

2023-01-09 23:52:21 +00:00
package cmd
import (
"gospt/internal/commands"
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(radioCmd)
}
var radioCmd = &cobra.Command{
Use: "radio",
Short: "Starts radio",
Long: `Starts radio`,
2023-01-10 00:36:12 +00:00
RunE: func(cmd *cobra.Command, args []string) error {
return commands.Radio(ctx, client)
2023-01-09 23:52:21 +00:00
},
}