From 3a35d99ca9970773fd241773ba515cf08478de56 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 19 Mar 2025 18:36:15 +0100 Subject: [PATCH] Update code in endpoints/some-endpoint.post.py --- endpoints/some-endpoint.post.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 endpoints/some-endpoint.post.py diff --git a/endpoints/some-endpoint.post.py b/endpoints/some-endpoint.post.py new file mode 100644 index 0000000..7be7969 --- /dev/null +++ b/endpoints/some-endpoint.post.py @@ -0,0 +1,8 @@ +from fastapi import APIRouter, Depends + +router = APIRouter() + +@router.post("/some-endpoint") +async def some_endpoint_handler(): + """Return 'yolooo'""" + return {"message": "yolooo"} \ No newline at end of file