gitlab-org--gitlab-foss/lib/gitlab/ci/status/external/factory.rb
2017-01-17 14:16:36 +01:00

13 lines
231 B
Ruby

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