2025-03-28 18:54:05 +01:00

7 lines
173 B
Python

from fastapi import APIRouter, status
router = APIRouter()
@router.get("/greets", status_code=status.HTTP_200_OK)
async def greet():
return {"message": "Good morning"}