summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/external/factory.rb
blob: 07b15bd8d97336d4d8c52250c2796f105b5b759b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Gitlab
  module Ci
    module Status
      module External
        class Factory < Status::Factory
          def self.common_helpers
            Status::External::Common
          end
        end
      end
    end
  end
end