Files
3FS/src/core/app/ServerMgmtdClientFetcher.h
2025-02-27 21:53:53 +08:00

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