website/app.py

8 lines
119 B
Python
Raw Permalink Normal View History

2022-09-22 02:17:05 +00:00
from flask import *
app = Flask(__name__)
@app.route("/")
async def start():
return render_template("home.html")