diff --git a/README.md b/README.md index 52a8b14..ebe8957 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,6 @@ func main() { ``` import( - "golang.org/x/oauth2" - "github.com/awa/go-iap/playstore" ) @@ -82,7 +80,8 @@ import( func main() { client := amazon.New("developerSecret") - resp, err := client.Verify("userID", "receiptID") + ctx := context.Background() + resp, err := client.Verify(ctx, "userID", "receiptID") } ```