summaryrefslogtreecommitdiff
path: root/qa/contracts/provider/environments/local.rb
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