Update code in endpoints/yolo-endpoint.get.py

This commit is contained in:
Backend IM Bot 2025-03-13 22:06:38 +01:00
parent 99d4a0833e
commit a01c7b2e2a

View File

@ -0,0 +1,10 @@
from fastapi import APIRouter, Depends, HTTPException
router = APIRouter()
@router.get("/yolo-endpoint")
async def yolo_endpoint_handler():
"""Demo yolo endpoint"""
return {
"message": "yoloooo! this shii works!!"
}