mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-04-29 06:09:20 -05:00
11 lines
265 B
C++
11 lines
265 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ShardDBTools {
|
|
public:
|
|
static void verifyEqual(const std::string& db1Path, const std::string& db2Path);
|
|
static void outputUnreleasedState(const std::string& dbPath);
|
|
static void fsck(const std::string& dbPath);
|
|
};
|