feat(core): register currency router in main.py

This commit is contained in:
2026-07-04 00:22:08 +00:00
parent 7d23815856
commit d3033056fd
+2
View File
@@ -37,6 +37,7 @@ from app.routes import (
tenants, tenants,
users, users,
workflows, workflows,
currencies,
) )
@@ -186,6 +187,7 @@ def create_app() -> FastAPI:
app.include_router(plugins.router) app.include_router(plugins.router)
app.include_router(ai_copilot.router) app.include_router(ai_copilot.router)
app.include_router(workflows.router) app.include_router(workflows.router)
app.include_router(currencies.router)
# ── Register plugin routes (before SPA catch-all) ──────────────── # ── Register plugin routes (before SPA catch-all) ────────────────
registry = get_registry() registry = get_registry()