gospt/src/cmd/radio.go

21 lines
315 B
Go
Raw Normal View History

2023-01-09 23:52:21 +00:00
package cmd
import (
2023-01-14 06:27:38 +00:00
"gospt/src/commands"
2023-01-09 23:52:21 +00:00
"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
},
}