From 44614e3ef5fead25b760358a9b71ce441d9177aa Mon Sep 17 00:00:00 2001 From: lionel Date: Fri, 17 Apr 2026 08:43:59 +0000 Subject: [PATCH] Update app.py --- app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app.py b/app.py index ad58293..c37ff79 100644 --- a/app.py +++ b/app.py @@ -74,6 +74,10 @@ def home(): return render_template_string(HTML, tekst=tekst, gespiegeld=gespiegeld) +@app.get("/health") +def health(): + return {"status": "ok"}, 200 + if __name__ == "__main__": app.run(host="0.0.0.0", debug=True)