fix:小组件- PUSH

This commit is contained in:
吕新雨
2026-02-03 17:43:58 +08:00
parent d742b398ef
commit c1c2c6197d
66 changed files with 4888 additions and 479 deletions

View File

@@ -3,6 +3,8 @@ from fastapi import FastAPI
from app.core.config import get_settings
from app.api.v1.reco import router as reco_router
from app.api.v1.user_profile_scoring import router as user_profile_router
from app.api.v1.legal import router as legal_router
from app.api.v1.push import router as push_router
def create_app() -> FastAPI:
@@ -19,6 +21,8 @@ def create_app() -> FastAPI:
# 业务路由
app.include_router(user_profile_router)
app.include_router(reco_router)
app.include_router(legal_router)
app.include_router(push_router)
@app.get("/health")
async def health() -> dict: