plenty of spotify variables

This commit is contained in:
2025-11-23 21:33:40 +00:00
parent fbd3bba63f
commit d042f365cf

View File

@@ -1,13 +1,15 @@
package handlers package handlers
import ( import (
"github.com/zmb3/spotify/v2"
spotifyauth "github.com/zmb3/spotify/v2/auth" spotifyauth "github.com/zmb3/spotify/v2/auth"
"golang.org/x/oauth2" "golang.org/x/oauth2"
"gorm.io/gorm" "gorm.io/gorm"
) )
type Store struct { type Store struct {
DB *gorm.DB DB *gorm.DB
SpotifyAuth *spotifyauth.Authenticator SpotifyAuth *spotifyauth.Authenticator
SpotifyToken *oauth2.Token SpotifyToken *oauth2.Token
SpotifyClient *spotify.Client
} }