From d6094c91189ee552832149575d391fa35839d1d5 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Tue, 12 Oct 2021 13:31:42 -0600 Subject: [PATCH] register auth blueprint --- flaskfdx/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flaskfdx/__init__.py b/flaskfdx/__init__.py index b53b923..1190c58 100644 --- a/flaskfdx/__init__.py +++ b/flaskfdx/__init__.py @@ -31,4 +31,7 @@ def create_app(test_config=None): from . import db db.init_app(app) + from . import auth + app.register_blueprint(auth.bp) + return app