Explorar el Código

app register manages app

weichen hace 3 años
padre
commit
99f57d5342
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  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