This commit is contained in:
2025-05-31 22:41:14 +02:00
parent e36053882b
commit 5cc21125e5
181 changed files with 174078 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from flask import Flask, request
app = Flask(__name__)
@app.route("/log")
def log():
print(request.args.get("c"))
return "", 204
app.run(host="0.0.0.0", port=8025)