REFACTOR ALL APIs

This commit is contained in:
Urtzi Alfaro
2025-10-06 15:27:01 +02:00
parent dc8221bd2f
commit 38fb98bc27
166 changed files with 18454 additions and 13605 deletions

View File

@@ -10,7 +10,7 @@ import structlog
from contextlib import asynccontextmanager
from app.core import settings, DatabaseManager, RedisClient
from app.api import router
from app.api import demo_sessions, demo_accounts, demo_operations
logger = structlog.get_logger()
@@ -74,7 +74,9 @@ async def global_exception_handler(request: Request, exc: Exception):
# Include routers
app.include_router(router)
app.include_router(demo_sessions.router)
app.include_router(demo_accounts.router)
app.include_router(demo_operations.router)
@app.get("/")