freeleaps-service-hub/apps/devops/app/routes/__init__.py
2025-05-18 22:23:44 -07:00

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