blueprint za import_link

master
janko 2023-04-08 23:39:36 +02:00
parent 0dc571eb56
commit a5dfc7130d
1 changed files with 2 additions and 0 deletions

2
app.py
View File

@ -5,6 +5,7 @@ from deck import bp as deck_bp
from menu import bp as menu_bp from menu import bp as menu_bp
from sr_session import sr_session from sr_session import sr_session
from upload import bp as upload_bp from upload import bp as upload_bp
from import_link import bp as import_link_bp
from matches import bp as matches_bp from matches import bp as matches_bp
from settings import bp as settings_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(deck_bp)
app.register_blueprint(menu_bp) app.register_blueprint(menu_bp)
app.register_blueprint(upload_bp) app.register_blueprint(upload_bp)
app.register_blueprint(import_link_bp)
app.register_blueprint(matches_bp) app.register_blueprint(matches_bp)
app.register_blueprint(settings_bp) app.register_blueprint(settings_bp)
app.add_url_rule('/', endpoint='index') app.add_url_rule('/', endpoint='index')