From 6343cbab1195aa6b7b3dd9fa960bb2ff899ff5e8 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 19 Mar 2025 09:32:19 +0000 Subject: [PATCH] Update code in endpoints/api/v1/endpoint.post.py --- endpoints/api/v1/endpoint.post.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 endpoints/api/v1/endpoint.post.py diff --git a/endpoints/api/v1/endpoint.post.py b/endpoints/api/v1/endpoint.post.py new file mode 100644 index 0000000..5fd5345 --- /dev/null +++ b/endpoints/api/v1/endpoint.post.py @@ -0,0 +1,16 @@ +from fastapi import APIRouter, Depends, HTTPException +from core.database import fake_users_db + +router = APIRouter() + +@router.post("/endpoint") +async def hello_endpoint(): + """Demo hello endpoint""" + return { + "message": "Hello from Backend.im", + "status": "success", + "metadata": { + "timestamp": "2024", + "version": "1.0" + } + } \ No newline at end of file