Browse Source

Imports blueprint

Jose Reyes 5 years ago
parent
commit
4b80a51881
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      flaskr/__init__.py

+ 3
- 0
flaskr/__init__.py View File

@@ -25,5 +25,8 @@ def create_app(test_config=None):
25 25
     from . import db
26 26
     db.init_app(app)
27 27
 
28
+    from . import auth
29
+    app.register_blueprint(auth.bp)
30
+
28 31
     return app
29 32