mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-05-04 08:49:29 -05:00
12 lines
324 B
C++
12 lines
324 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);
|
|
static void fixupBadInodes(const std::string& dbPath);
|
|
};
|