From 4b8562f1c19f430b8ac67714afa8c62cc724f5c3 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Sat, 4 Jul 2026 00:24:41 +0000 Subject: [PATCH] feat(core): register sequence router in main.py --- app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.py b/app/main.py index e0d7b0c..b2ce23f 100644 --- a/app/main.py +++ b/app/main.py @@ -39,6 +39,7 @@ from app.routes import ( workflows, currencies, taxes, + sequences, ) @@ -190,6 +191,7 @@ def create_app() -> FastAPI: app.include_router(workflows.router) app.include_router(currencies.router) app.include_router(taxes.router) + app.include_router(sequences.router) # ── Register plugin routes (before SPA catch-all) ──────────────── registry = get_registry()