Update IAPClient.Verify to use interface argument

This commit is contained in:
Austin George
2017-05-05 10:01:54 +02:00
parent 39ea669c61
commit f953f9abaa

View File

@@ -24,7 +24,7 @@ type Config struct {
// IAPClient is an interface to call validation API in App Store
type IAPClient interface {
Verify(IAPRequest) (IAPResponse, error)
Verify(IAPRequest, interface{}) error
}
// Client implements IAPClient