don't allow args

This commit is contained in:
filifa 2024-07-20 12:30:13 -05:00
parent 0418d533dd
commit 02ddfbf2b9
2 changed files with 3 additions and 1 deletions

View File

@ -80,6 +80,7 @@ var scheduleCmd = &cobra.Command{
Use: "schedule", Use: "schedule",
Short: "Retrieve daily schedules", Short: "Retrieve daily schedules",
Long: `Retrieve a day's schedule for the whole league or a specific team.`, Long: `Retrieve a day's schedule for the whole league or a specific team.`,
Args: cobra.NoArgs,
Run: schedule, Run: schedule,
} }

View File

@ -97,6 +97,7 @@ var subscribeCmd = &cobra.Command{
Establish a websocket connection with ws.statsapi.mlb.com and output JSON with Establish a websocket connection with ws.statsapi.mlb.com and output JSON with
live updates of a game.`, live updates of a game.`,
Args: cobra.NoArgs,
Run: subscribe, Run: subscribe,
} }