diff --git a/app.py b/app.py index cad286e..30c7900 100644 --- a/app.py +++ b/app.py @@ -7,5 +7,10 @@ def hello(): return "Hello World!" + +@app.route('/healthz') +def healthz(): + return "Health: OK" + if __name__ == '__main__': serve(app, host='0.0.0.0', port=8080)