Add flag to enable new cache layout

This commit is contained in:
Deluan 2020-10-26 09:54:36 -04:00
parent 81d7556cdf
commit bf5318d776
2 changed files with 8 additions and 1 deletions

View file

@ -49,6 +49,7 @@ type configOptions struct {
DevLogSourceLine bool
DevAutoCreateAdminPassword string
DevPreCacheAlbumArtwork bool
DevNewCacheLayout bool
}
type scannerOptions struct {
@ -134,6 +135,7 @@ func init() {
viper.SetDefault("devlogsourceline", false)
viper.SetDefault("devautocreateadminpassword", "")
viper.SetDefault("devprecachealbumartwork", false)
viper.SetDefault("devnewcachelayout", false)
}
func InitConfig(cfgFile string) {