Files
gitlab-foss/gems/gitlab-backup-cli/lib/gitlab/backup/cli/base_executor.rb
2024-10-08 06:18:18 +00:00

19 lines
536 B
Ruby

# frozen_string_literal: true
module Gitlab
module Backup
module Cli
class BaseExecutor
attr_reader :backup_bucket, :wait_for_completion, :registry_bucket, :service_account_file
def initialize(backup_bucket:, wait_for_completion:, registry_bucket:, service_account_file:)
@backup_bucket = backup_bucket
@registry_bucket = registry_bucket
@wait_for_completion = wait_for_completion
@service_account_file = service_account_file
end
end
end
end
end