Add initial spotify client implementation

This commit is contained in:
Deluan 2020-10-18 13:23:02 -04:00 committed by Deluan Quintão
parent eb74dad7cd
commit 19ead8f7e8
7 changed files with 977 additions and 0 deletions

View file

@ -42,6 +42,7 @@ type configOptions struct {
Scanner scannerOptions
LastFM lastfmOptions
Spotify spotifyOptions
// DevFlags. These are used to enable/disable debugging and incomplete features
DevLogSourceLine bool
@ -58,6 +59,11 @@ type lastfmOptions struct {
Language string
}
type spotifyOptions struct {
ID string
Secret string
}
var Server = &configOptions{}
func LoadFromFile(confFile string) {