feat: Update endpoint captain-marv

This commit is contained in:
Backend IM Bot 2025-03-19 16:27:03 +00:00
parent c38cd93352
commit 88208492f5

View File

@ -0,0 +1,16 @@
from fastapi import APIRouter, Depends, HTTPException
from core.database import fake_users_db
router = APIRouter()
@router.get("/captain-marv")
async def captain_marv_endpoint():
"""Return Captain Marv appreciation message"""
return {
"message": "Success",
"text": "captain marv is literally the best",
"metadata": {
"source": "appreciation_service",
"timestamp": "now"
}
}