7 lines
251 B
Python
7 lines
251 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import health, items
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(items.router, prefix="/itemsss", tags=["items"]) |