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)