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 @@
"""
Attachment Domain
"""
from typing import Dict, Any
from pydantic import BaseModel, ConfigDict
from ...common import SyncNode
class AttachmentSchema(BaseModel):
"""允许任意附件字段的 schema"""
model_config = ConfigDict(extra="allow")
class AttachmentSyncNode(SyncNode[Dict[str, Any]]):
"""附件同步节点"""
node_type = "attachment"
schema = AttachmentSchema