@@ -25,5 +25,8 @@ def create_app(test_config=None):
from . import db
db.init_app(app)
+ from . import auth
+ app.register_blueprint(auth.bp)
+
return app