Add broll router to podcast API registrations
This commit is contained in:
@@ -12,7 +12,7 @@ from api.story_writer.utils.auth import require_authenticated_user
|
|||||||
from api.story_writer.task_manager import task_manager
|
from api.story_writer.task_manager import task_manager
|
||||||
|
|
||||||
# Import all handler routers
|
# 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
|
# Create main router
|
||||||
router = APIRouter(prefix="/api/podcast", tags=["Podcast Maker"])
|
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(video.router)
|
||||||
router.include_router(avatar.router)
|
router.include_router(avatar.router)
|
||||||
router.include_router(dubbing.router)
|
router.include_router(dubbing.router)
|
||||||
|
router.include_router(broll.router)
|
||||||
|
|
||||||
|
|
||||||
@router.get("/task/{task_id}/status")
|
@router.get("/task/{task_id}/status")
|
||||||
|
|||||||
Reference in New Issue
Block a user