mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
feat: Add listenbrainz base url configuration (#1774)
* feat: Add listenbrainz base url configuration - ListenBrainz.BaseURL config value * Don't need to store baseUrl * Use `url.JoinPath` to concatenate url paths * Replace url.JoinPath (Go 1.19 only) with custom function Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
cb3ba23fce
commit
2f7a3c5eda
8 changed files with 34 additions and 17 deletions
|
@ -98,6 +98,7 @@ type spotifyOptions struct {
|
|||
|
||||
type listenBrainzOptions struct {
|
||||
Enabled bool
|
||||
BaseURL string
|
||||
}
|
||||
|
||||
var (
|
||||
|
@ -254,6 +255,7 @@ func init() {
|
|||
viper.SetDefault("spotify.id", "")
|
||||
viper.SetDefault("spotify.secret", "")
|
||||
viper.SetDefault("listenbrainz.enabled", true)
|
||||
viper.SetDefault("listenbrainz.baseurl", "https://api.listenbrainz.org/1/")
|
||||
|
||||
// DevFlags. These are used to enable/disable debugging and incomplete features
|
||||
viper.SetDefault("devlogsourceline", false)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue