2025-05-31 12:20:02 +00:00

7 lines
258 B
Python

from fastapi import APIRouter
from app.api.v1 import health, inventory
api_router = APIRouter()
api_router.include_router(health.router, prefix="/health", tags=["health"])
api_router.include_router(inventory.router, prefix="/inventory", tags=["inventory"])