Files
web/venv/index.py
timothypidashev 142129a13f working version
2021-07-15 11:50:18 -07:00

11 lines
164 B
Python

from flask import Flask
app = Flask(__name__, static_folder=".", static_url_path="")
@app.route("/")
def home():
return app.send_static_file("index.html")