from fastapi import APIRouter from app.api.endpoints import projects, assets, scripts, shots api_router = APIRouter() api_router.include_router(projects.router, prefix="/projects", tags=["projects"]) api_router.include_router(assets.router, prefix="/assets", tags=["assets"]) api_router.include_router(scripts.router, prefix="/scripts", tags=["scripts"]) api_router.include_router(shots.router, prefix="/shots", tags=["shots"])