feat: Update endpoint op-marv

This commit is contained in:
Backend IM Bot 2025-03-19 16:31:45 +00:00
parent b35ad0e188
commit 7e901e4287

View File

@ -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"
}
}