gospt/src/cmd/nowplaying.go
2023-02-09 01:28:41 -06:00

22 lines
469 B
Go

package cmd
import (
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(nowPlayingCmd)
}
var nowPlayingCmd = &cobra.Command{
Use: "nowplaying",
Aliases: []string{"now"},
Short: "Shows song and artist of currently playing song",
Long: `Shows song and artist of currently playing song, useful for scripting`,
Run: func(cmd *cobra.Command, args []string) {
commands.NowPlaying(ctx, client)
},
}