Update code in endpoints/yolo.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 16:06:57 +00:00
parent fa31b76455
commit 8494a6308b

10
endpoints/yolo.get.py Normal file
View File

@ -0,0 +1,10 @@
# Entity: Yolo
from fastapi import APIRouter, status
router = APIRouter()
@router.get("/yolo", status_code=status.HTTP_200_OK)
async def get_yolo():
"""Return yoloo!"""
return {"message": "yoloo!"}