截图识别飞书个人任务清单

This commit is contained in:
2026-03-18 15:15:52 +08:00
parent cb5efbe3ca
commit 69f92205e9
23 changed files with 5835 additions and 0 deletions

11
services/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
"""
服务模块
"""
from .ai_service import AIService
from .feishu_service import FeishuService
__all__ = [
'AIService',
'FeishuService'
]