Spaces:
Sleeping
Sleeping
from flask import Flask, render_template | |
app = Flask(__name__) | |
def index(): | |
# Render the index.html file from the templates folder | |
return render_template("index.html") | |
if __name__ == "__main__": | |
app.run(debug=True) | |