mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add new scanner algorithm, can be enabled with DevNewScanner config option
This commit is contained in:
parent
de0cc1f268
commit
51c295d1de
11 changed files with 750 additions and 160 deletions
|
@ -38,6 +38,7 @@ type configOptions struct {
|
|||
// DevFlags. These are used to enable/disable debugging and incomplete features
|
||||
DevLogSourceLine bool
|
||||
DevAutoCreateAdminPassword string
|
||||
DevNewScanner bool
|
||||
}
|
||||
|
||||
var Server = &configOptions{}
|
||||
|
@ -94,6 +95,7 @@ func init() {
|
|||
// DevFlags. These are used to enable/disable debugging and incomplete features
|
||||
viper.SetDefault("devlogsourceline", false)
|
||||
viper.SetDefault("devautocreateadminpassword", "")
|
||||
viper.SetDefault("devnewscanner", false)
|
||||
}
|
||||
|
||||
func InitConfig(cfgFile string) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue