From 7e901e428774b6d5f059fd517cb20c9307cd762f Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 19 Mar 2025 16:31:45 +0000 Subject: [PATCH] feat: Update endpoint op-marv --- endpoints/op-marv.get.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/endpoints/op-marv.get.py b/endpoints/op-marv.get.py index e69de29..5c2c581 100644 --- a/endpoints/op-marv.get.py +++ b/endpoints/op-marv.get.py @@ -0,0 +1,16 @@ +from fastapi import APIRouter, Depends, HTTPException +from core.database import fake_users_db + +router = APIRouter() + +@router.post("/api/v1/endpoint") +async def marv_endpoint(): + """Endpoint that returns Marv's status""" + return { + "message": "Success", + "data": "Marv is OP", + "metadata": + "source": "marv_status", + "timestamp": "now" + } + } \ No newline at end of file