16 lines
310 B
Go
16 lines
310 B
Go
package handlers
|
|
|
|
import (
|
|
"adam-french.co.uk/backend/services"
|
|
"github.com/zmb3/spotify/v2"
|
|
spotifyauth "github.com/zmb3/spotify/v2/auth"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Store struct {
|
|
DB *gorm.DB
|
|
SpotifyAuth *spotifyauth.Authenticator
|
|
SpotifyClient *spotify.Client
|
|
Auth *services.Auth
|
|
}
|