用 Python 重写市场监控网页版:FastAPI+Jinja2+HTMX,复用 _analyze()

This commit is contained in:
2569718930@qq.com
2026-05-13 23:19:49 +08:00
parent bfffbdedd0
commit a221b3e969
3 changed files with 356 additions and 0 deletions
+2
View File
@@ -22,8 +22,10 @@ from web.analysis_service import ( # noqa: E402
)
from web.core import app # noqa: E402
from web.routes import router # noqa: E402
from web.monitor_routes import router as monitor_router # noqa: E402
app.include_router(router)
app.include_router(monitor_router)
__all__ = [
"app",