fix(reprot): use SQLite3 in current dir if not specified (#1103)

This commit is contained in:
Kota Kanbe
2020-12-26 08:24:17 +09:00
committed by GitHub
parent 8679759f60
commit a33cff8f13
4 changed files with 34 additions and 84 deletions

View File

@@ -275,6 +275,12 @@ func (c TOMLLoader) Load(pathToToml, keyPass string) error {
servers[serverName] = s
}
Conf.Servers = servers
Conf.CveDict.Init()
Conf.OvalDict.Init()
Conf.Gost.Init()
Conf.Exploit.Init()
Conf.Metasploit.Init()
return nil
}