diff --git a/endpoints/captain-marv.get.py b/endpoints/captain-marv.get.py index e69de29..4593bcc 100644 --- a/endpoints/captain-marv.get.py +++ b/endpoints/captain-marv.get.py @@ -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" + } + } \ No newline at end of file