website/app.py

8 lines
119 B
Python

from flask import *
app = Flask(__name__)
@app.route("/")
async def start():
return render_template("home.html")