diff --git a/stardew_community_checklist/__init__.py b/stardew_community_checklist/__init__.py new file mode 100644 index 0000000..cc669ec --- /dev/null +++ b/stardew_community_checklist/__init__.py @@ -0,0 +1,15 @@ +""" + +Author: John Cleaver +Copyright: 2016 John Cleaver +License: See LICENSE file +""" + +from flask import Flask, render_template + +app = Flask(__name__) + + +@app.route("/") +def index(): + return render_template('index.html')