hii-hiii-e0724f/endpoints/api/v1/endpoint.post.py
2025-03-19 16:30:31 +00:00

16 lines
401 B
Python

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