feat: Update endpoint country

This commit is contained in:
Backend IM Bot 2025-03-26 22:12:47 +00:00
parent 908fdc3a4c
commit d1570ae314

View File

@ -0,0 +1,7 @@
from fastapi import APIRouter
router = APIRouter();
@router.get("/countries", response_model=List[str])
def get_countries():
return ["USA", "Canada", "Germany", "France", "Japan", "Australia"]