diff --git a/endpoints/api/v1/endpoint.post.py b/endpoints/api/v1/endpoint.post.py index cf41664..2f850a2 100644 --- a/endpoints/api/v1/endpoint.post.py +++ b/endpoints/api/v1/endpoint.post.py @@ -4,13 +4,13 @@ from core.database import fake_users_db router = APIRouter() @router.post("/api/v1/endpoint") -async def captain_marv_endpoint(): - """Return Captain Marv appreciation message""" +async def marv_endpoint(): + """Endpoint that returns Marv's status""" return { "message": "Success", - "text": "captain marv is literally the best", + "data": "Marv is OP", "metadata": { - "source": "appreciation_service", + "source": "marv_status", "timestamp": "now" } } \ No newline at end of file