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

pipeline.rb « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70e6030ea2c5484cbba99c82b83fa212fb87e83d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module BulkImports
  module Pipeline
    extend ActiveSupport::Concern

    included do
      include Attributes
      include Runner
    end
  end
end