diff --git a/endpoints/lol.get.py b/endpoints/lol.get.py index e69de29..732f965 100644 --- a/endpoints/lol.get.py +++ b/endpoints/lol.get.py @@ -0,0 +1,19 @@ +from fastapi import APIRouter, Depends, HTTPException +from core.database import fake_users_db + +router = APIRouter() + +@router.get("/lol") +async def lol_handler(): + """Demo lol endpoint""" + return { + "message": "LOL success", + "data": { + "expression": "😂", + "meaning": "Laugh Out Loud" + }, + "metadata": { + "response_type": "humor", + "intensity": "high" + } + } \ No newline at end of file