gospt/cmd/next.go

31 lines
630 B
Go
Raw Normal View History

2023-01-13 23:06:43 -08:00
package cmd
import (
2023-01-16 21:02:23 -08:00
"strconv"
2023-01-13 23:06:43 -08:00
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(nextCmd)
}
var nextCmd = &cobra.Command{
2023-01-16 21:08:30 -08:00
Use: "next {amount}",
2023-01-20 14:19:16 -08:00
Aliases: []string{"n", "skip"},
2023-01-16 21:02:23 -08:00
Args: cobra.MatchAll(cobra.RangeArgs(0, 1)),
2023-01-16 21:08:30 -08:00
Short: "Skip to next song or skip the specified number of tracks",
Long: `Skip to next song of skip the specified number of tracks`,
2023-01-16 21:02:23 -08:00
RunE: func(cmd *cobra.Command, args []string) error {
skipAmt := 1
if len(args) >= 1 {
var err error
skipAmt, err = strconv.Atoi(args[0])
if err != nil {
return err
}
}
return commands.Next(ctx, skipAmt, false)
2023-01-13 23:06:43 -08:00
},
}