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