9 lines
164 B
Python
9 lines
164 B
Python
|
from fastapi import APIRouter
|
||
|
|
||
|
router = APIRouter(
|
||
|
prefix="/vehicle"
|
||
|
)
|
||
|
|
||
|
@router.get('/{vehicleId}/vin')
|
||
|
async def get_vehicle_vin(vehicleId: str):
|
||
|
return ""
|