Numpy-Neuron / app.py
Jensen-holm's picture
tailwind working in the app
30dd301
raw
history blame
209 Bytes
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
@app.route("/index")
def index():
return render_template("index.html")
if __name__ == '__main__':
app.run(debug=True)