remove all previous files

This commit is contained in:
Xevion
2020-07-31 09:07:05 -05:00
parent 064981ab2b
commit 29e44886a0
15 changed files with 0 additions and 1478 deletions

16
wsgi.py
View File

@@ -1,16 +0,0 @@
from app import app, db
from app.models import Season, Episode, Section, Quote
@app.shell_context_processor
def make_shell_context():
return {
'db' : db,
'Season' : Season,
'Episode' : Episode,
'Section' : Section,
'Quote' : Quote
}
if __name__ == "__main__":
app.run(host="0.0.0.0")