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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-23 18:09:45 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-23 18:09:45 +0300
commit99c1dfd5e3f39868d65cb006078a8d091992fa54 (patch)
tree18d970852272c6d5ba303911da13d16cbff2514c /lib/gitlab/counters.rb
parent23634aa773e10e7df79247fb6fddbce88b825909 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/counters.rb')
-rw-r--r--lib/gitlab/counters.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/gitlab/counters.rb b/lib/gitlab/counters.rb
new file mode 100644
index 00000000000..5ff664f53bd
--- /dev/null
+++ b/lib/gitlab/counters.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Counters
+ Increment = Struct.new(:amount, :ref, keyword_init: true)
+ end
+end