Files
web/venv/index.py
timothypidashev 966ce43331 upload config
2021-07-15 11:03:59 -07:00

11 lines
108 B
Python

from flask import Flask
app = Flask(__name__)
@app.route("/")
def home():
return "Home Page Route"