1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00

Added an init for the flask app.

This commit is contained in:
John Cleaver 2016-03-13 16:16:08 -04:00
parent e2d588ed1c
commit a48ec9e286

View File

@ -0,0 +1,15 @@
"""
Author: John Cleaver <cleaver.john.k@gmail.com>
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')