diff --git a/endpoints/api/v1/endpoint.post.py b/endpoints/api/v1/endpoint.post.py new file mode 100644 index 0000000..cf41664 --- /dev/null +++ b/endpoints/api/v1/endpoint.post.py @@ -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 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