Explorar o código

register home, blogs to app

weichen %!s(int64=4) %!d(string=hai) anos
pai
achega
80c5a8a345
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      backstage/__init__.py

+ 4 - 0
backstage/__init__.py

@@ -9,8 +9,12 @@ def create_app():
 
     from backstage.collections.routes import collections_app
     from backstage.editor.routes import editor_app
+    from backstage.home.routes import home_app
+    from backstage.blogs.routes import blogs_app
 
     app.register_blueprint(collections_app)
     app.register_blueprint(editor_app)
+    app.register_blueprint(home_app)
+    app.register_blueprint(blogs_app)
 
     return app