新增路由器、主机客户端和共享协议模块,支持多主机部署模式: - 路由器作为中央节点管理主机连接和消息路由 - 主机客户端作为工作节点运行本地代理 - 共享协议定义通信消息格式 - 新增独立运行模式standalone.py - 更新配置系统支持路由模式
7 lines
229 B
Python
7 lines
229 B
Python
"""Host client module - connects to router and runs local mailboy."""
|
|
|
|
from host_client.config import HostConfig, get_host_config
|
|
from host_client.main import NodeClient
|
|
|
|
__all__ = ["HostConfig", "get_host_config", "NodeClient"]
|