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,16 @@
"""Attachment domain registration"""
from ...common.registry import DomainRegistry
from .sync_node import AttachmentSyncNode, AttachmentSchema
from .sync_strategy import AttachmentSyncStrategy
from .jsonl_handler import AttachmentJsonlHandler
from .api_handler import AttachmentApiHandler
# 注册 attachment domain
DomainRegistry.register(
node_type="attachment",
schema=AttachmentSchema,
node_class=AttachmentSyncNode,
strategy_class=AttachmentSyncStrategy,
jsonl_handler_class=AttachmentJsonlHandler,
api_handler_class=AttachmentApiHandler,
)