From d042f365cfeb04e792290965d1a40c32f2d8f0a1 Mon Sep 17 00:00:00 2001 From: Adam French Date: Sun, 23 Nov 2025 21:33:40 +0000 Subject: [PATCH] plenty of spotify variables --- backend/handlers/store.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/backend/handlers/store.go b/backend/handlers/store.go index 308c855..68b9b95 100644 --- a/backend/handlers/store.go +++ b/backend/handlers/store.go @@ -1,13 +1,15 @@ package handlers import ( + "github.com/zmb3/spotify/v2" spotifyauth "github.com/zmb3/spotify/v2/auth" "golang.org/x/oauth2" "gorm.io/gorm" ) type Store struct { - DB *gorm.DB - SpotifyAuth *spotifyauth.Authenticator - SpotifyToken *oauth2.Token + DB *gorm.DB + SpotifyAuth *spotifyauth.Authenticator + SpotifyToken *oauth2.Token + SpotifyClient *spotify.Client }