Update code in endpoints/booker.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 19:11:27 +01:00
parent 86a1e1996c
commit 304feb6fd3

7
endpoints/booker.get.py Normal file
View File

@ -0,0 +1,7 @@
from fastapi import APIRouter
router = APIRouter()
@router.get("/booker", status_code=200)
async def good_evening():
return {"message": "Good evening"}