feat: Update endpoint country

This commit is contained in:
Backend IM Bot 2025-03-26 22:13:41 +00:00
parent d1570ae314
commit 0a58b0d8ac

View File

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