match/lib/match/storage.rb in fastlane-2.109.1 vs match/lib/match/storage.rb in fastlane-2.110.0

- old
+ new

@@ -1,14 +1,18 @@ require_relative 'storage/interface' require_relative 'storage/git_storage' +require_relative 'storage/google_cloud_storage' module Match module Storage class << self def backends @backends ||= { "git" => lambda { |params| return Storage::GitStorage.configure(params) + }, + "google_cloud" => lambda { |params| + return Storage::GoogleCloudStorage.configure(params) } } end def register_backend(type: nil, storage_class: nil, &configurator)