Files
Aethera/mcp/core/Control_Service.ipp
T
2026-08-28 10:11:40 +08:00

12 lines
240 B
C++

#pragma once
#include "runtime/Plot.hpp"
#include <unordered_map>
namespace aethera::mcp {
struct Control_Service::Private {
std::unordered_map<std::string, std::shared_ptr<web::Plot>> plots; /* Plot 唯一实例注册表。 */
};
}