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

result.rb « health_checks « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d32a6980eb8d90d1261749c4d9adc718542c7b05 (plain)
1
2
3
4
5
6
# rubocop:disable Naming/FileName
# frozen_string_literal: true

module Gitlab::HealthChecks
  Result = Struct.new(:success, :message, :labels)
end