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