6 lines
143 B
Ruby
6 lines
143 B
Ruby
# rubocop:disable Naming/FileName
|
|
# frozen_string_literal: true
|
|
|
|
module Gitlab::HealthChecks
|
|
Metric = Struct.new(:name, :value, :labels)
|
|
end
|