WIP Add db dumper tool

This commit is contained in:
lash
2024-11-02 20:29:32 +00:00
parent 24d4b8478e
commit 10b3083647
4 changed files with 72 additions and 4 deletions

View File

@@ -114,3 +114,7 @@ func(tdb *ThreadGdbmDb) Close() error {
tdb.db = nil
return err
}
func(tdb *ThreadGdbmDb) Dump(ctx context.Context, key []byte) (*db.Dumper, error) {
return tdb.db.Dump(ctx, key)
}