adding spotify api interaction

This commit is contained in:
2025-11-20 18:04:31 +00:00
parent 10b5dfabfd
commit 9aabff9752
4 changed files with 26 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
package handlers
import (
"github.com/gin-gonic/gin"
)
func (store *Store) ListeningTo(c *gin.Context) {
// Communicate with spotify API
// Return if I'm listening to a song
return
}
func (store *Store) SendSong(c *gin.Context) {
// Communicate with spotify API
// Play song on spotify
// Disallow new song for duration of song
return
}