Update code in endpoints/get-endpoint.post.py

This commit is contained in:
Backend IM Bot 2025-03-19 18:41:35 +01:00
parent 3458ddb456
commit 8d996a096b

View File

@ -4,5 +4,7 @@ router = APIRouter()
@router.post("/get-endpoint")
async def get_endpoint_handler():
"""Returns 'yolooo'"""
return {"message": "yolooo"}
"""Demo get endpoint"""
return {
"message": "yolooo"
}