mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
17 lines
285 B
C++
17 lines
285 B
C++
#pragma once
|
|
|
|
#include "common/utils/Coroutine.h"
|
|
|
|
namespace hf3fs::mgmtd {
|
|
struct MgmtdState;
|
|
class MgmtdNewBornChainsChecker {
|
|
public:
|
|
explicit MgmtdNewBornChainsChecker(MgmtdState &state);
|
|
|
|
CoTask<void> check();
|
|
|
|
private:
|
|
MgmtdState &state_;
|
|
};
|
|
} // namespace hf3fs::mgmtd
|