Userstore dumper tool #153

Merged
lash merged 18 commits from lash/store-dumper into master 2024-12-14 13:02:48 +01:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit 35cf3a1cd1 - Show all commits

5
debug/cap.go Normal file
View File

@ -0,0 +1,5 @@
package debug
var (
DebugCap uint32
)

View File

@ -37,6 +37,10 @@ var (
} }
) )
func init() {
DebugCap |= 1
}
func typToString(v common.DataTyp) string { func typToString(v common.DataTyp) string {
return dbTypStr[v] return dbTypStr[v]
} }