summaryrefslogtreecommitdiff
path: root/lib/bulk_imports/pipeline.rb
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