register auth blueprint

This commit is contained in:
2021-10-12 13:31:42 -06:00
parent 2a160bf9b6
commit d6094c9118
+3
View File
@@ -31,4 +31,7 @@ def create_app(test_config=None):
from . import db from . import db
db.init_app(app) db.init_app(app)
from . import auth
app.register_blueprint(auth.bp)
return app return app