Update code in endpoints/booker.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 19:17:34 +01:00
parent 304feb6fd3
commit 20496c4e77

View File

@ -2,6 +2,10 @@ from fastapi import APIRouter
router = APIRouter()
@router.from fastapi import APIRouter
router = APIRouter()
@router.get("/booker", status_code=200)
async def good_evening():
return {"message": "Good evening"}
async def get_evening_greeting():
return {"message": "Good evening!"}