Update code in endpoints/yolomax.get.py

This commit is contained in:
Backend IM Bot 2025-03-27 23:45:34 +00:00
parent c7f16661ff
commit f9c42adfae

View File

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