diff --git a/endpoints/bookings.get.py b/endpoints/bookings.get.py new file mode 100644 index 0000000..f51942f --- /dev/null +++ b/endpoints/bookings.get.py @@ -0,0 +1,7 @@ +from fastapi import APIRouter + +router = APIRouter() + +@router.get("/bookings", status_code=200) +async def say_good_evening(): + return {"message": "Good evening"} \ No newline at end of file