Update code in endpoints/bookings.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 19:09:02 +01:00
parent 4ad884b2e0
commit 86a1e1996c

View File

@ -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"}