gospt/cmd/radio.go

21 lines
306 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`,
Run: func(cmd *cobra.Command, args []string) {
commands.Radio(ctx, client)
},
}