diff --git a/app.py b/app.py index 7d89d9d..15c6904 100644 --- a/app.py +++ b/app.py @@ -75,6 +75,10 @@ def translate_day(weekday: int) -> str: app = Flask(__name__) +@app.route('/healthcheck') +def healthcheck(): + return 'ok' + @app.route('/') def home(): delta = request.args.get("delta", default=0, type=int)