//
// Copyright (c) 2022 Adyen N.V.
//
// This file is open source and available under the MIT license. See the LICENSE file for more info.
//

import Adyen
import React
import UIKit

@objc(AdyenGooglePay)
internal class GooglePayModuleMock: BaseModule {

    override func supportedEvents() -> [String]! { [Events.didFail.rawValue] }

    @objc
    func open(_ paymentMethodsDict: NSDictionary, configuration: NSDictionary) {
        sendEvent(error: NativeModuleError.notSupported)
    }
}
