Numpy-Neuron / app.py
Jensen-holm's picture
added baseline stuff for making this a flask app with tailwind
a63e09b
raw
history blame
250 Bytes
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()