mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
11 lines
294 B
C++
11 lines
294 B
C++
#pragma once
|
|
|
|
#include "MgmtdClientFetcher.h"
|
|
|
|
namespace hf3fs::core::launcher {
|
|
struct ServerMgmtdClientFetcher : public MgmtdClientFetcher {
|
|
using MgmtdClientFetcher::MgmtdClientFetcher;
|
|
Result<Void> completeAppInfo(flat::AppInfo &appInfo) final;
|
|
};
|
|
} // namespace hf3fs::core::launcher
|