fix: 修复交易复盘打不开问题

alphaFuthures
Lxy 3 weeks ago
parent e5a30ab63c
commit 5b938ee7f5

@ -136,6 +136,18 @@ def ai_config_page():
return FileResponse(str(STATIC_DIR / "ai_config.html")) return FileResponse(str(STATIC_DIR / "ai_config.html"))
@app.get("/review-plan")
def review_plan_page():
"""复盘计划页面"""
return FileResponse(str(STATIC_DIR / "review_plan.html"))
@app.get("/trade-review")
def trade_review_page():
"""交易复盘页面"""
return FileResponse(str(STATIC_DIR / "trade_review.html"))
@app.get("/api/v1/health") @app.get("/api/v1/health")
def health(): def health():
return {"status": "ok", "service": "market-data-buffer"} return {"status": "ok", "service": "market-data-buffer"}

Binary file not shown.

Binary file not shown.
Loading…
Cancel
Save