1
0
Fork 0
mirror of https://github.com/shouptech/flask-tutorial.git synced 2026-02-03 15:39:44 +00:00
This commit is contained in:
Emma 2018-10-31 05:59:46 -06:00
parent 8f58a85ce8
commit 8b3006f0c8

View file

@ -29,4 +29,7 @@ def create_app(test_config=None):
def hello(): def hello():
return 'Hello, World!' return 'Hello, World!'
from . import db
db.init_app(app)
return app return app