From 8d996a096b47aaa33c869855a7544ea6f663afa4 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 19 Mar 2025 18:41:35 +0100 Subject: [PATCH] Update code in endpoints/get-endpoint.post.py --- endpoints/get-endpoint.post.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/endpoints/get-endpoint.post.py b/endpoints/get-endpoint.post.py index 103cc78..0c21496 100644 --- a/endpoints/get-endpoint.post.py +++ b/endpoints/get-endpoint.post.py @@ -4,5 +4,7 @@ router = APIRouter() @router.post("/get-endpoint") async def get_endpoint_handler(): - """Returns 'yolooo'""" - return {"message": "yolooo"} \ No newline at end of file + """Demo get endpoint""" + return { + "message": "yolooo" + } \ No newline at end of file