feat: Adding next song

This commit is contained in:
kar
2025-12-30 21:53:08 -06:00
parent 19e920a83f
commit 51c7ec058b
2 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ func main() {
os.Exit(1)
}
comandosPermitidos := []string{"play", "pause", "info"}
comandosPermitidos := []string{"play", "pause", "info", "next"}
var comando string
if slices.Contains(comandosPermitidos, os.Args[1]) {
comando = os.Args[1]