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

base.rb « downstream « variables « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6845ed4cc1b4dca011b2851622b9d532a6cc1a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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