project-with-dips-gsziol/endpoints/yolo-endpoint.get.py
2025-03-13 22:06:38 +01:00

10 lines
237 B
Python

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!!"
}