21 lines
411 B
Go
21 lines
411 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"gospt/internal/commands"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(togglePlayCmd)
|
||
|
}
|
||
|
|
||
|
var togglePlayCmd = &cobra.Command{
|
||
|
Use: "toggleplay",
|
||
|
Short: "Toggles the play state of spotify",
|
||
|
Long: `If you are playing a song it will pause and if a song is paused it will play`,
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
commands.TogglePlay(ctx, client)
|
||
|
},
|
||
|
}
|