chore: 整理项目结构,清理归档文件,更新部署配置

This commit is contained in:
Simon
2026-07-04 21:01:39 +08:00
parent 8bd4ab0366
commit 64ff1bf7d5
508 changed files with 43575 additions and 14129 deletions
+25
View File
@@ -0,0 +1,25 @@
# =============================================================================
# 坐席服务模块 (agent)
# =============================================================================
# 说明:坐席相关服务,包括评分、二维码等
#
# 本模块包含:
# - ScoringService: 坐席评分服务
# - 二维码生成服务
#
# 迁移说明:
# 旧导入路径:from app.services import ScoringService
# 新导入路径:from app.services.agent import ScoringService
# 两者均支持(向后兼容)
# =============================================================================
# 重新导出坐席服务类
from app.services.scoring_service import ScoringService
# 二维码服务(模块级函数)
import app.services.qrcode_service as qrcode_service
__all__ = [
"ScoringService",
"qrcode_service",
]