Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_lfs_object_worker.rb « bitbucket_import « gitlab « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39b6668402628a2c53379b7448b43c3839fc521d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BitbucketImport
    class ImportLfsObjectWorker # rubocop:disable Scalability/IdempotentWorker
      include ObjectImporter

      def importer_class
        Importers::LfsObjectImporter
      end
    end
  end
end