This commit is contained in:
Mateusz779 2023-04-06 14:07:13 +02:00
commit 020a67b7e0
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/venv

7
app.py Normal file
View File

@ -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")