Update code in endpoints/greetings.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 18:55:58 +01:00
parent 059a7bcba5
commit 4e0ecaf2c4

View File

@ -0,0 +1,7 @@
from fastapi import APIRouter, status
router = APIRouter()
@router.get("/greetings", status_code=status.HTTP_200_OK)
async def greet():
return {"message": "Good morning!"}