From a549b40a1de499fe15ffb314606b6ebd8b1466c1 Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 1 Jul 2026 12:21:51 +0300 Subject: [PATCH] Add healthcheck endpoint --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index f19d39f..a5703af 100644 --- a/src/main.py +++ b/src/main.py @@ -164,6 +164,7 @@ async def ping() -> dict[str, str]: 'status': 'ok', } +@app.get('/healthcheck') @app.get('/health') async def health() -> dict[str, str]: return {