RoboRallyGUI/app.py

13 lines
192 B
Python
Raw Normal View History

2020-09-11 12:30:40 +00:00
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def hello_world():
return render_template('drag_example.html')
if __name__ == '__main__':
app.run()