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
@@ -0,0 +1,28 @@
# =============================================================================
# 集成服务模块 (integration)
# =============================================================================
# 说明:外部系统集成服务,包括企微 API、安全系统对接等
#
# 本模块包含:
# - WecomService: 企业微信 API 服务
# - HighRiskGuard: 高风险操作守卫
# - security_comparison: 安全对比服务
#
# 迁移说明:
# 旧导入路径:from app.services import WecomService
# 新导入路径:from app.services.integration import WecomService
# 两者均支持(向后兼容)
# =============================================================================
# 重新导出集成服务类
from app.services.wecom_service import WecomService
from app.services.high_risk_guard import HighRiskGuard
# 安全对比服务(模块级函数)
import app.services.security_comparison as security_comparison
__all__ = [
"WecomService",
"HighRiskGuard",
"security_comparison",
]