This commit is contained in:
Patrick Jentsch 2020-03-27 12:52:17 +01:00
parent f09c4d15f6
commit 97fb8ded9a

View File

@ -48,7 +48,4 @@ def create_app(config_name):
from .services import services as services_blueprint from .services import services as services_blueprint
app.register_blueprint(services_blueprint, url_prefix='/services') app.register_blueprint(services_blueprint, url_prefix='/services')
from .test import test as test_blueprint
app.register_blueprint(test_blueprint, url_prefix='/test')
return app return app