diff --git a/endpoints/yolo.get.py b/endpoints/yolo.get.py new file mode 100644 index 0000000..fa2aa9a --- /dev/null +++ b/endpoints/yolo.get.py @@ -0,0 +1,10 @@ +# Entity: Yolo + +from fastapi import APIRouter, status + +router = APIRouter() + +@router.get("/yolo", status_code=status.HTTP_200_OK) +async def get_yolo(): + """Return yoloo!""" + return {"message": "yoloo!"} \ No newline at end of file