From 9bf336fa11a327582ac24a2609f6a95f024ad73d Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Thu, 13 Nov 2025 21:56:13 +0100 Subject: [PATCH] groups and scenes 3 --- apps/api/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")