Update code in endpoints/yolo-endpoint.get.py
This commit is contained in:
parent
865516d167
commit
9f8a9eb62f
@ -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!!"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user