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