commit 020a67b7e064ae5cc96efb06c3118630597eb53c Author: Mateusz779 Date: Thu Apr 6 14:07:13 2023 +0200 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a979ee7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/venv \ No newline at end of file diff --git a/app.py b/app.py new file mode 100644 index 0000000..6983e65 --- /dev/null +++ b/app.py @@ -0,0 +1,7 @@ +from flask import Flask, send_file + +app = Flask(__name__) + +@app.route("/api/getvpn") +def hello_world(): + return send_file("praktyki.squashfs") \ No newline at end of file