From a48ec9e286ceafeca64381b761aae34a27c6177f Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Sun, 13 Mar 2016 16:16:08 -0400 Subject: [PATCH] Added an init for the flask app. --- stardew_community_checklist/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 stardew_community_checklist/__init__.py 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')