Files
ecm_sync_system/sync_state_machine/domain/attachment/jsonl_handler.py
T
strepsiades f5729d5a18 整理代码
2026-04-03 09:18:44 +08:00

13 lines
378 B
Python

"""
Attachment JSONL Handler
"""
from typing import Dict, Any
from ...datasource import BaseJsonlHandler, JsonlDataSource
from .sync_node import AttachmentSyncNode
class AttachmentJsonlHandler(BaseJsonlHandler):
"""附件 JSONL Handler"""
def __init__(self, datasource: JsonlDataSource):
super().__init__(datasource, AttachmentSyncNode, schema=Dict[str, Any])