first commit

This commit is contained in:
strepsiades
2026-03-09 16:31:42 +08:00
commit 4a9c444b10
486 changed files with 52479 additions and 0 deletions
@@ -0,0 +1,17 @@
"""Construction task domain registration"""
from ...common.registry import DomainRegistry
from schemas.construction.construction import ConstructionResponse
from .sync_node import ConstructionTaskSyncNode
from .sync_strategy import ConstructionTaskSyncStrategy
from .jsonl_handler import ConstructionTaskJsonlHandler
from .api_handler import ConstructionTaskApiHandler
# 注册 construction_task domain
DomainRegistry.register(
node_type="construction_task",
schema=ConstructionResponse,
node_class=ConstructionTaskSyncNode,
strategy_class=ConstructionTaskSyncStrategy,
jsonl_handler_class=ConstructionTaskJsonlHandler,
api_handler_class=ConstructionTaskApiHandler,
)