diff --git a/backend/api/podcast/router.py b/backend/api/podcast/router.py index c3b66234..5e79f9f3 100644 --- a/backend/api/podcast/router.py +++ b/backend/api/podcast/router.py @@ -12,7 +12,7 @@ from api.story_writer.utils.auth import require_authenticated_user from api.story_writer.task_manager import task_manager # Import all handler routers -from .handlers import projects, analysis, research, script, audio, images, video, avatar, dubbing +from .handlers import projects, analysis, research, script, audio, images, video, avatar, dubbing, broll # Create main router router = APIRouter(prefix="/api/podcast", tags=["Podcast Maker"]) @@ -27,6 +27,7 @@ router.include_router(images.router) router.include_router(video.router) router.include_router(avatar.router) router.include_router(dubbing.router) +router.include_router(broll.router) @router.get("/task/{task_id}/status")