7 lines
125 B
Ruby
7 lines
125 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module HealthChecks
|
|
Metric = Struct.new(:name, :value, :labels)
|
|
end
|
|
end
|