From f799d1195040aa8a0fdae1d2e1f5609cb52c68a1 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Sat, 4 Jul 2026 00:23:36 +0000 Subject: [PATCH] feat(core): register tax router in main.py --- app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.py b/app/main.py index f375c21..e0d7b0c 100644 --- a/app/main.py +++ b/app/main.py @@ -38,6 +38,7 @@ from app.routes import ( users, workflows, currencies, + taxes, ) @@ -188,6 +189,7 @@ def create_app() -> FastAPI: app.include_router(ai_copilot.router) app.include_router(workflows.router) app.include_router(currencies.router) + app.include_router(taxes.router) # ── Register plugin routes (before SPA catch-all) ──────────────── registry = get_registry()