feat(V2): IBKR router wiring + build_client + WS singleton DI

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
root
2026-05-03 21:35:28 +00:00
parent 6940e2865b
commit bea37fd734
3 changed files with 270 additions and 0 deletions
+2
View File
@@ -24,6 +24,7 @@ from cerbero_mcp.routers import (
bybit,
deribit,
hyperliquid,
ibkr,
macro,
sentiment,
)
@@ -61,6 +62,7 @@ def _make_app(settings: Settings) -> FastAPI:
app.include_router(bybit.make_router())
app.include_router(hyperliquid.make_router())
app.include_router(alpaca.make_router())
app.include_router(ibkr.make_router())
app.include_router(macro.make_router())
app.include_router(sentiment.make_router())
app.include_router(admin.make_admin_router())