diff options
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,12 +22,12 @@ def invite(): return redirect("https://invite.pythondiscord.com/") @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 |