gospt/cmd/pause.go

21 lines
336 B
Go
Raw Normal View History

2023-01-09 23:52:21 +00:00
package cmd
import (
"gospt/internal/commands"
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(pauseCmd)
}
var pauseCmd = &cobra.Command{
Use: "pause",
Short: "Pauses spotify",
Long: `Pauses currently playing song on spotify`,
Run: func(cmd *cobra.Command, args []string) {
commands.Pause(ctx, client)
},
}