ForcePilot/backend/package/yuxi/channel/common/__init__.py
Kris 5d098c3423 feat(channel/common): 添加上传附件缓存工具类
新增AttachmentCache缓存管理类和CachedAttachment数据类,实现会话级别的附件缓存管理,支持自动过期清理、本地文件删除逻辑
2026-05-21 10:23:27 +08:00

7 lines
145 B
Python

from yuxi.channel.common.attachment_cache import AttachmentCache, CachedAttachment
__all__ = [
"AttachmentCache",
"CachedAttachment",
]