gitlab-org--gitlab-foss/lib/gitlab/ci/status/bridge/factory.rb
2018-12-12 10:34:17 +01:00

15 lines
258 B
Ruby

# 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