]> jfr.im git - dlqueue.git/blame - app.py
hello world
[dlqueue.git] / app.py
CommitLineData
28ed5e79
JR
1from flask import Flask, render_template
2
3app = Flask(__name__)
4
5@app.route("/")
6def index():
7 return render_template('index.html')