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