Merge branch 'development' of gitlab.ub.uni-bielefeld.de:sfb1288inf/opaque into development

This commit is contained in:
Stephan Porada
2019-08-15 15:57:40 +02:00
4 changed files with 116 additions and 0 deletions

View File

@ -24,6 +24,9 @@ def create_app(config_name):
scheduler.init_app(app)
scheduler.start()
from .api import api as api_blueprint
app.register_blueprint(api_blueprint, url_prefix='/api')
from .auth import auth as auth_blueprint
app.register_blueprint(auth_blueprint, url_prefix='/auth')