__init__.py 979 B

123456789101112131415161718192021
  1. from apps.deploy import app as app_page
  2. from apps.deploy import image
  3. from apps.deploy import config
  4. from apps.deploy import publish
  5. from apps.deploy import host
  6. from apps.deploy import container
  7. from apps.deploy import menu
  8. from apps.deploy import exec
  9. from apps.deploy import field
  10. def register_blueprint(app):
  11. app.register_blueprint(app_page.blueprint, url_prefix='/deploy/apps')
  12. app.register_blueprint(image.blueprint, url_prefix='/deploy/images')
  13. app.register_blueprint(config.blueprint, url_prefix='/deploy/configs')
  14. app.register_blueprint(publish.blueprint, url_prefix='/deploy/publish')
  15. app.register_blueprint(host.blueprint, url_prefix='/deploy/hosts')
  16. app.register_blueprint(container.blueprint, url_prefix='/deploy/containers')
  17. app.register_blueprint(menu.blueprint, url_prefix='/deploy/menus')
  18. app.register_blueprint(exec.blueprint, url_prefix='/deploy/exec')
  19. app.register_blueprint(field.blueprint, url_prefix='/deploy/fields')