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