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

This commit is contained in:
Backend IM Bot 2025-03-19 18:37:04 +01:00
parent 3a35d99ca9
commit 9151f9b00e

View File

@ -4,5 +4,7 @@ router = APIRouter()
@router.post("/some-endpoint") @router.post("/some-endpoint")
async def some_endpoint_handler(): async def some_endpoint_handler():
"""Return 'yolooo'""" """Demo endpoint"""
return {"message": "yolooo"} return {
"message": "yolooo maxxx"
}