blueprint za import_link
parent
0dc571eb56
commit
a5dfc7130d
2
app.py
2
app.py
|
@ -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')
|
||||||
|
|
Loading…
Reference in New Issue