diff --git a/apps/api/main.py b/apps/api/main.py index 26fec3d..628c0a7 100644 --- a/apps/api/main.py +++ b/apps/api/main.py @@ -77,7 +77,7 @@ app.add_middleware( async def startup_event(): """Include routers after app is initialized to avoid circular imports.""" from apps.api.routes.groups_scenes import router as groups_scenes_router - app.include_router(groups_scenes_router, prefix="", tags=["groups", "scenes"]) + app.include_router(groups_scenes_router, prefix="") @app.get("/health")