6 lines
192 B
Python
6 lines
192 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import rentals
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
api_router.include_router(rentals.router, prefix="/rentals", tags=["rentals"]) |