debian-mirror-gitlab/qa/contracts/provider/environments/local.rb
2022-05-07 20:08:51 +05:30

12 lines
226 B
Ruby

# 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