From 07ceadaccf3288615c4c0f3c2e158d47fe163e93 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sat, 4 Jul 2026 17:57:16 +0000 Subject: [PATCH] Bind video_router in the routes re-export tuple for the import-hoist verifier --- studio/backend/routes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/backend/routes/__init__.py b/studio/backend/routes/__init__.py index 8c51e2ef04..4fead20cc4 100644 --- a/studio/backend/routes/__init__.py +++ b/studio/backend/routes/__init__.py @@ -38,4 +38,4 @@ __all__ = [ ] # Bind the re-export so the import-hoist verifier counts it as used. -_ = (rag_router,) +_ = (rag_router, video_router)