summaryrefslogtreecommitdiff
path: root/lib/generators/gitlab/usage_metric/templates/instrumentation_class.rb.template
blob: 603b6f3bc8af0b9465cac6a9be0729327e34aaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module Usage
    module Metrics
      module Instrumentations
        class <%= class_name %>Metric < <%= metric_superclass %>Metric
          def value
          end
        end
      end
    end
  end
end