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

8 lines
180 B
Python

from fastapi import APIRouter
from .apis import router as hello_world_api
router = APIRouter(prefix="/hello_world")
router.include_router(hello_world_api, tags=["hello_world"])