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

counters.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ff664f53bd24247511f6cb625b426c79f194eb7 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module Gitlab
  module Counters
    Increment = Struct.new(:amount, :ref, keyword_init: true)
  end
end