Add new scanner algorithm, can be enabled with DevNewScanner config option

This commit is contained in:
Deluan 2020-07-17 10:27:30 -04:00
parent de0cc1f268
commit 51c295d1de
11 changed files with 750 additions and 160 deletions

View file

@ -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) {