Fix botched merge

This commit is contained in:
3wc 2021-07-17 13:31:32 +02:00
parent 82c0c63ff4
commit bef379273f
1 changed files with 9 additions and 10 deletions

View File

@ -188,8 +188,8 @@ def create_app():
auth, landing, console, payment, metrics, cli, hub_api, publicapi, admin
)
app.register_blueprint(landing.bp)
app.register_blueprint(auth.bp)
app.register_blueprint(landing.bp)
app.register_blueprint(console.bp)
app.register_blueprint(payment.bp)
app.register_blueprint(metrics.bp)
@ -254,4 +254,3 @@ def create_app():
return url_for(endpoint, **values)
return app
>>>>>>> tests