8 lines
180 B
Python
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"])
|