summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/bridge/factory.rb
blob: 910de8654836db0873af8bef6daca58481912363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Bridge
        class Factory < Status::Factory
          def self.common_helpers
            Status::Bridge::Common
          end
        end
      end
    end
  end
end