新增爆管侦测功能及相关API接口

This commit is contained in:
2026-03-11 10:31:24 +08:00
parent 90216a762a
commit bef1c74782
7 changed files with 743 additions and 1 deletions
+4
View File
@@ -13,6 +13,7 @@ from app.api.v1.endpoints import (
risk,
cache,
leakage,
burst_detection,
burst_location,
user_management, # 新增:用户管理
audit, # 新增:审计日志
@@ -91,6 +92,9 @@ api_router.include_router(misc.router, tags=["Misc"])
api_router.include_router(risk.router, tags=["Risk"])
api_router.include_router(cache.router, tags=["Cache"])
api_router.include_router(leakage.router, prefix="/leakage", tags=["Leakage"])
api_router.include_router(
burst_detection.router, prefix="/burst-detection", tags=["Burst Detection"]
)
api_router.include_router(
burst_location.router, prefix="/burst-location", tags=["Burst Location"]
)