diff --git a/endpoints/yolo-endpoint.get.py b/endpoints/yolo-endpoint.get.py index e69de29..32de62f 100644 --- a/endpoints/yolo-endpoint.get.py +++ b/endpoints/yolo-endpoint.get.py @@ -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!!" + } \ No newline at end of file