|
@@ -12,11 +12,13 @@ def create_app():
|
|
|
from backstage.home.routes import home_app
|
|
|
from backstage.room_planner.routes import room_planner_app
|
|
|
from backstage.blogs.routes import blogs_app
|
|
|
+ from backstage.store_locations.routes import store_locations_app
|
|
|
|
|
|
app.register_blueprint(collections_app)
|
|
|
app.register_blueprint(editor_app)
|
|
|
app.register_blueprint(home_app)
|
|
|
app.register_blueprint(blogs_app)
|
|
|
app.register_blueprint(room_planner_app)
|
|
|
+ app.register_blueprint(store_locations_app)
|
|
|
|
|
|
return app
|