feat: Delete GET endpoint op-marv

This commit is contained in:
Backend IM Bot 2025-03-19 17:53:04 +00:00
parent fc26a57a52
commit 2ccbd4f85c

View File

@ -1,16 +0,0 @@
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"
}
}