diff --git a/listen.py b/listen.py index 35c8a75..beecd40 100644 --- a/listen.py +++ b/listen.py @@ -6,7 +6,7 @@ app = Flask(__name__) @app.route("/ping", methods=["GET"]) def ping(): - return "something else" + return "pong" @app.route("/gitea", methods=["POST"])