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

This commit is contained in:
Backend IM Bot 2025-03-14 09:00:54 +01:00
parent 865516d167
commit 9f8a9eb62f

View File

@ -0,0 +1,11 @@
from fastapi import APIRouter, Depends, HTTPException
from core.database import fake_users_db
router = APIRouter()
@router.get("/yolo-endpoint")
async def yolo_endpoint_handler():
"""Demo yolo endpoint"""
return {
"message": "yolooo, this stuff works!!"
}