summaryrefslogtreecommitdiff
path: root/db/importers/common_metrics_importer.rb
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