refactor(cloud): move package into workspace member

This commit is contained in:
2026-07-12 14:11:51 +08:00
parent 07b7c9fc48
commit bfd56fd2da
12 changed files with 1 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
"""Cloud runtime: multi-host device pool, scheduler, plugins, and public SDK.
Sibling to ``agents/``, ``workflow/``, etc. Composes the existing single-process
capabilities (``device-management``, ``agent-runtime``, ``workflow-orchestration``,
``driver-registry``) without editing them.
"""
__all__ = [
"CloudConfig",
"CloudStore",
"DevicePool",
"HostRegistration",
"PooledDevice",
"TaskScheduler",
"ScheduledTask",
"TaskConstraints",
"AssignmentStrategy",
"fifo_match_strategy",
"TaskDispatcher",
"Assignment",
"RemoteDispatchNotSupportedError",
"PluginManifest",
"PluginRegistry",
"DiscoveryResult",
]