diff --git a/endpoints/endpoint.get.py b/endpoints/endpoint.get.py index e69de29..22d0aeb 100644 --- a/endpoints/endpoint.get.py +++ b/endpoints/endpoint.get.py @@ -0,0 +1,8 @@ +from fastapi import APIRouter, status + +router = APIRouter() + +@router.get("/endpoint", status_code=status.HTTP_200_OK) +async def get_yoloo(): + """Return yoloo""" + return {"message": "yoloo"} \ No newline at end of file