diff --git a/app.py b/app.py index 7c452f6..9eff9b9 100644 --- a/app.py +++ b/app.py @@ -5,6 +5,7 @@ from deck import bp as deck_bp from menu import bp as menu_bp from sr_session import sr_session from upload import bp as upload_bp +from import_link import bp as import_link_bp from matches import bp as matches_bp from settings import bp as settings_bp @@ -54,6 +55,7 @@ def create_app(test_config=None): app.register_blueprint(deck_bp) app.register_blueprint(menu_bp) app.register_blueprint(upload_bp) + app.register_blueprint(import_link_bp) app.register_blueprint(matches_bp) app.register_blueprint(settings_bp) app.add_url_rule('/', endpoint='index')