mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-01-27 21:38:51 -06: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);
|
|
};
|