mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-01-07 19:40:56 -06:00
10 lines
214 B
C++
10 lines
214 B
C++
#pragma once
|
|
|
|
#include "Env.hpp"
|
|
|
|
struct CDCOptions {
|
|
LogLevel level = LogLevel::LOG_INFO;
|
|
std::string logFile = ""; // if empty, stdout
|
|
};
|
|
|
|
void runCDC(const std::string& dbDir, const CDCOptions& options); |