diff --git a/main.py b/main.py index a4d43b8..06351ec 100644 --- a/main.py +++ b/main.py @@ -36,8 +36,6 @@ def save(): def get_ip() -> str: return (flask.request.headers.get("X-Real-IP") if REVERSE_PROXY else flask.request.remote_addr) or "0.0.0.0" -app.route("/about/")(lambda: open(BASE_DIR / "public/about.html", "rb").read()) - @app.route("/", methods=["POST", "GET"]) def index() -> bytes: ip = get_ip()