gospt/cmd/radio.go
jjohnstondev a6f06a753e
All checks were successful
continuous-integration/drone/tag Build is passing
fix readio issue
2023-01-09 16:36:12 -08:00

21 lines
320 B
Go

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