diff --git a/endpoints/lol.post.py b/endpoints/lol.post.py index e69de29..c57d21e 100644 --- a/endpoints/lol.post.py +++ b/endpoints/lol.post.py @@ -0,0 +1,19 @@ +from fastapi import APIRouter, Depends, HTTPException +from core.database import fake_users_db + +router = APIRouter() + +@router.post("/lol") +async def lol_handler(): + """Demo lol endpoint""" + return { + "message": "LOL successful", + "data": { + "emoji": "😂", + "intensity": "high" + }, + "metadata": { + "timestamp": "now", + "mood": "playful" + } + } \ No newline at end of file