freeleaps-service-hub/apps/devops/app/routes/__init__.py

9 lines
222 B
Python

from fastapi import APIRouter
from app.routes.hello_world import router as hello_world_router
api_router = APIRouter()
# TODO: add custom routers here
api_router.include_router(hello_world_router, tags=["hello_world"])