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:
parent
e2d588ed1c
commit
a48ec9e286
15
stardew_community_checklist/__init__.py
Normal file
15
stardew_community_checklist/__init__.py
Normal 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')
|
||||
Loading…
Reference in New Issue
Block a user