fabric-samples/Hackathon/main/views.py
macc125 340b6b0679
Add files via upload
Make sure to run pip install requirements.txt to grab all dependencies
2020-02-22 18:37:15 -05:00

10 lines
233 B
Python

from flask import render_template
from flask_run import app
# Our route for displaying the bootstrap template
@app.route("/")
def index():
return '<h1> Hello? </h1>'
# return render_template("student.html"), 200