__init__.py 246 B

1234567
  1. from apps.assets import host
  2. from apps.assets import host_exec
  3. def register_blueprint(app):
  4. app.register_blueprint(host.blueprint, url_prefix='/assets/hosts')
  5. app.register_blueprint(host_exec.blueprint, url_prefix='/assets/hosts_exec')