2025-05-26 18:58:29 +00:00

8 lines
228 B
Python

from fastapi import APIRouter
router = APIRouter()
# Import and include routers from endpoint modules
# Example: from .items import router as items_router
# router.include_router(items_router, prefix="/items", tags=["items"])