From d3033056fd373b5727a9a1bb5472b4b32e52164f Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Sat, 4 Jul 2026 00:22:08 +0000 Subject: [PATCH] feat(core): register currency router in main.py --- app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.py b/app/main.py index 9ec9e05..f375c21 100644 --- a/app/main.py +++ b/app/main.py @@ -37,6 +37,7 @@ from app.routes import ( tenants, users, workflows, + currencies, ) @@ -186,6 +187,7 @@ def create_app() -> FastAPI: app.include_router(plugins.router) app.include_router(ai_copilot.router) app.include_router(workflows.router) + app.include_router(currencies.router) # ── Register plugin routes (before SPA catch-all) ──────────────── registry = get_registry()