BigW Consortium Gitlab

gitlab_shell_worker.rb 196 Bytes
class GitlabShellWorker
  include Sidekiq::Worker
  include Gitlab::ShellAdapter

  sidekiq_options queue: :gitlab_shell

  def perform(action, *arg)
    gitlab_shell.send(action, *arg)
  end
end