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

common_metrics_importer.rb « importers « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2e3996a123a7b77f83f1e282fcba08551cfb3b9 (plain)
1
2
3
4
5
6
7
8
9
# This functionality has been moved to the lib/gitlab/importers/common_metrics module.
# This is here only to preserve existing ::Importers::CommonMetricsImporter api
module Importers
  module CommonMetricsImporter
    def self.new(*args)
      Gitlab::Importers::CommonMetrics::Importer.new(*args)
    end
  end
end