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:
Diffstat (limited to 'lib/gitlab/ci/variables/downstream/base.rb')
-rw-r--r--lib/gitlab/ci/variables/downstream/base.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/gitlab/ci/variables/downstream/base.rb b/lib/gitlab/ci/variables/downstream/base.rb
new file mode 100644
index 00000000000..6845ed4cc1b
--- /dev/null
+++ b/lib/gitlab/ci/variables/downstream/base.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Ci
+ module Variables
+ module Downstream
+ class Base
+ def initialize(context)
+ @context = context
+ end
+
+ private
+
+ attr_reader :context
+ end
+ end
+ end
+ end
+end