From b9fab3793e4d0ed737b22d71cd901ff5475d3bc5 Mon Sep 17 00:00:00 2001 From: Junpei Tsuji Date: Fri, 18 May 2018 18:22:55 +0900 Subject: [PATCH] [ci skip] Update read me --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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") } ```