Added app route for tailwind file

This commit is contained in:
SanjayramVempati 2023-01-27 10:59:19 -05:00 committed by GitHub
parent 6432e17c89
commit 1297eb4cca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
app.py
View File

@ -16,6 +16,10 @@ css.build()
def homepage():
return render_template("index.html")
@app.route("/tw")
def tw():
return render_template("tw.html")
#Modify to get data
@app.route('/api/datapoint')
def api_datapoint():