Files
2026-01-27 17:40:37 +01:00

11 lines
431 B
Python

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"])