Include a shared Last.FM api key, providing zero conf ArtistInfo (bio/top songs/similar artists)

This commit is contained in:
Deluan 2021-05-27 16:14:24 -04:00
parent db11b6b8f8
commit b398053223
5 changed files with 50 additions and 10 deletions

View file

@ -71,6 +71,7 @@ type scannerOptions struct {
}
type lastfmOptions struct {
Enabled bool
ApiKey string
Secret string
Language string
@ -196,6 +197,7 @@ func init() {
viper.SetDefault("scanner.extractor", "taglib")
viper.SetDefault("agents", "lastfm,spotify")
viper.SetDefault("lastfm.enabled", true)
viper.SetDefault("lastfm.language", "en")
viper.SetDefault("lastfm.apikey", "")
viper.SetDefault("lastfm.secret", "")