diff options
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,12 +18,12 @@ def _index(): @app.route("/healthcheck") -def healthcheck(): +def _healthcheck(): return jsonify({"status":"ok"}) @app.errorhandler(404) -def page_not_found(e): +def _page_not_found(e): return "replace me with a template, 404 not found", 404 |