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

Removed python files and reorganized html/css.

This commit is contained in:
John Cleaver 2016-03-16 17:55:06 -04:00
parent d567d48f17
commit b1d67c2afb
4 changed files with 0 additions and 25 deletions

View File

@ -1,10 +0,0 @@
"""
Author: John Cleaver <cleaver.john.k@gmail.com>
Copyright: 2016 John Cleaver
License: See LICENSE file
"""
from stardew_community_checklist import app
app.run(debug=True)

View File

@ -1,15 +0,0 @@
"""
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')