Zdalne-systemy-z-kit-uVPN/app.py
Mateusz779 c07f99a166 -
2023-04-07 09:46:07 +02:00

7 lines
160 B
Python

from flask import Flask, send_file
app = Flask(__name__)
@app.route("/api/getvpn")
def hello_world():
return send_file("configs/squash/praktyki.squashfs")