Browse Source

app register manages app

weichen 3 years ago
parent
commit
99f57d5342
1 changed files with 4 additions and 1 deletions
  1. 4 1
      models/__init__.py

+ 4 - 1
models/__init__.py

@@ -10,7 +10,10 @@ def create_app():
     app.config['SECRET_KEY'] = SECRET_KEY
 
     from models.contents.routes import contents_app
-
+    from models.manages.routes import manages_app
+    
     app.register_blueprint(contents_app)
 
+    app.register_blueprint(manages_app)
+
     return app