diff --git a/endpoints/country.get.py b/endpoints/country.get.py index d0001cb..41c21fa 100644 --- a/endpoints/country.get.py +++ b/endpoints/country.get.py @@ -2,6 +2,6 @@ from fastapi import APIRouter router = APIRouter(); -@router.get("/countries") +@router.get("/country") def get_countries(): return ["USA", "Canada", "Germany", "France", "Japan", "Australia"]