mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
12 lines
329 B
C++
12 lines
329 B
C++
#pragma once
|
|
|
|
#include "ChainTargetSetting.h"
|
|
|
|
namespace hf3fs::flat {
|
|
struct ChainSetting : public serde::SerdeHelper<ChainSetting> {
|
|
SERDE_STRUCT_FIELD(chainId, ChainId(0));
|
|
SERDE_STRUCT_FIELD(targets, std::vector<ChainTargetSetting>{});
|
|
SERDE_STRUCT_FIELD(setPreferredTargetOrder, false);
|
|
};
|
|
} // namespace hf3fs::flat
|