Spaces:
Sleeping
Sleeping
File size: 250 Bytes
a63e09b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from flask import Flask, render_template
app = Flask(
__name__,
static_folder="static",
template_folder="templates",
)
@app.route("/")
def index():
return render_template("index.html")
if __name__ == "__main__":
app.run()
|