Files
ecm_sync_system/sync_state_machine/domain/attachment/jsonl_handler.py
T
strepsiades 4a9c444b10 first commit
2026-03-09 16:31:42 +08:00

13 lines
385 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, "attachment", AttachmentSyncNode, Dict[str, Any])