9 lines
218 B
Python
9 lines
218 B
Python
from fastapi import APIRouter
|
|
from 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"])
|