diff --git a/src/app/core/setup.py b/src/app/core/setup.py index c126cd3..40701f1 100644 --- a/src/app/core/setup.py +++ b/src/app/core/setup.py @@ -185,6 +185,7 @@ def create_application( lifespan = lifespan_factory(settings, create_tables_on_start=create_tables_on_start) application = FastAPI(lifespan=lifespan, **kwargs) + application.include_router(router) if isinstance(settings, ClientSideCacheSettings): application.add_middleware(ClientCacheMiddleware, max_age=settings.CLIENT_CACHE_MAX_AGE)