commit
This commit is contained in:
10
backend/app/api/api.py
Normal file
10
backend/app/api/api.py
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
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"])
|
||||
Reference in New Issue
Block a user