diff --git a/src/main.py b/src/main.py index 22047d6..df8920e 100644 --- a/src/main.py +++ b/src/main.py @@ -103,3 +103,9 @@ async def ping() -> dict[str, str]: 'message': 'pong', 'status': 'ok', } + +@app.get('/health') +async def health() -> dict[str, str]: + return { + 'status': 'ok', + }