diff --git a/endpoints/people.get.py b/endpoints/people.get.py index 7524cbd..73cc241 100644 --- a/endpoints/people.get.py +++ b/endpoints/people.get.py @@ -5,7 +5,7 @@ router = APIRouter() @router.get("/people") async def people_handler(): - """Get list of people""" + """Fetch list of people""" people = list(fake_users_db.values()) return { "message": "People fetched successfully",