8 lines
216 B
Python
8 lines
216 B
Python
from fastapi import APIRouter
|
|
from app.routes.deployment.apis import router as deployment_api
|
|
|
|
api_router = APIRouter()
|
|
|
|
# TODO: add custom routers here
|
|
api_router.include_router(deployment_api, tags=["deployment"])
|