Add GET endpoint for /lulu

This commit is contained in:
Backend IM Bot 2025-03-29 13:40:06 -05:00
parent eaa00f50ee
commit bd0374e7c7

View File

@ -0,0 +1,10 @@
from fastapi import APIRouter, status
from typing import List
from helpers.car_helpers import get_asian_cars
router = APIRouter()
@router.get("/lulu", status_code=200, response_model=List[str])
async def list_asian_cars():
asian_cars = get_asian_cars()
return asian_cars