mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add initial spotify client implementation
This commit is contained in:
parent
eb74dad7cd
commit
19ead8f7e8
7 changed files with 977 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue