This commit is contained in:
YouROK
2020-11-30 23:32:51 +03:00
parent 0569ade7b8
commit ee7902cbb6
5 changed files with 13 additions and 12 deletions

View File

@@ -5,9 +5,8 @@ var (
Path string
)
func InitSets(path string, readOnly bool) {
Path = path
tdb = NewTDB(path, readOnly)
func InitSets(readOnly bool) {
tdb = NewTDB(readOnly)
loadBTSets()
}