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

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

require 'gitlab/utils/system'

module Gitlab
  module Metrics
    module System
      extend Gitlab::Utils::System
    end
  end
end