Files
web/venv/index.py
timothypidashev 15eb1d729a plz work
2021-07-15 12:37:17 -07:00

11 lines
125 B
Python

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