Welcome to mirror list, hosted at ThFree Co, Russian Federation.

failed.rb « bridge « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de7446c238cbeba2c2b829e54a65fb2dcda81a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Bridge
        class Failed < Status::Build::Failed
        end
      end
    end
  end
end