23 lines
387 B
Go
23 lines
387 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(unmuteCmd)
|
|
}
|
|
|
|
var unmuteCmd = &cobra.Command{
|
|
Use: "unmute",
|
|
Short: "unmutes playback",
|
|
Long: `unmutes the spotify device, playback will continue`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
err := commands.SetVolume(ctx, 100)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
},
|
|
}
|