rebuild(stage-9): deliver deterministic intelligent screening

This commit is contained in:
leefer
2026-07-30 05:15:17 +08:00
parent 6cb52e864a
commit 158257ebb8
46 changed files with 7322 additions and 34 deletions
+2
View File
@@ -2,9 +2,11 @@ from fastapi import APIRouter
from backend.features.accounts.routes import router as accounts_router
from backend.features.market.routes import router as market_router
from backend.features.screener.routes import router as screener_router
from backend.http.routes.health import router as health_router
api_router = APIRouter()
api_router.include_router(health_router)
api_router.include_router(accounts_router)
api_router.include_router(market_router)
api_router.include_router(screener_router)