Fixed read me

This commit is contained in:
Junpei Tsuji
2018-05-17 14:31:13 +09:00
parent ea45e6dbd0
commit 06acfeb7a8

View File

@@ -67,7 +67,8 @@ func main() {
} }
client := playstore.New(jsonKey) client := playstore.New(jsonKey)
resp, err := client.VerifySubscription("package", "subscriptionID", "purchaseToken") ctx := context.Background()
resp, err := client.VerifySubscription(ctx, "package", "subscriptionID", "purchaseToken")
} }
``` ```