Add get endpoint for /yolodi

This commit is contained in:
Backend IM Bot 2025-03-28 00:08:50 +00:00
parent 81be79ff37
commit c356841733

11
endpoints/yolodi.get.py Normal file
View File

@ -0,0 +1,11 @@
# Entity: None - Simple Text Response
from fastapi import APIRouter, status
from typing import Dict
router = APIRouter()
@router.get("/yolodi", status_code=status.HTTP_200_OK, response_model=Dict[str, str])
async def get_yoloo():
"""Return yoloo message"""
return {"message": "yoloo!!"}