don't allow args
This commit is contained in:
parent
0418d533dd
commit
02ddfbf2b9
|
@ -80,6 +80,7 @@ var scheduleCmd = &cobra.Command{
|
|||
Use: "schedule",
|
||||
Short: "Retrieve daily schedules",
|
||||
Long: `Retrieve a day's schedule for the whole league or a specific team.`,
|
||||
Args: cobra.NoArgs,
|
||||
Run: schedule,
|
||||
}
|
||||
|
||||
|
|
|
@ -97,7 +97,8 @@ var subscribeCmd = &cobra.Command{
|
|||
|
||||
Establish a websocket connection with ws.statsapi.mlb.com and output JSON with
|
||||
live updates of a game.`,
|
||||
Run: subscribe,
|
||||
Args: cobra.NoArgs,
|
||||
Run: subscribe,
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
|
Loading…
Reference in New Issue