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

local.rb « environments « provider « contracts « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d472bc25e97363844f70fe859b0b49d7e490c13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Provider
  module Environments
    class Local < Base
      def initialize
        @base_url = ENV['CONTRACT_HOST']
        @merge_request = ENV['CONTRACT_MR']
      end
    end
  end
end