From 391b952acb967e2e7f1548f9806bd312e3729b21 Mon Sep 17 00:00:00 2001 From: Junpei Tsuji Date: Tue, 25 Jul 2017 17:49:48 +0900 Subject: [PATCH] Use standard context package --- README.md | 1 - playstore/validator.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f8c61d..73321ed 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@ Current API Documents: # Dependencies ``` -go get golang.org/x/net/context go get golang.org/x/oauth2 go get golang.org/x/oauth2/google go get google.golang.org/api/androidpublisher/v2 diff --git a/playstore/validator.go b/playstore/validator.go index d68cc17..a95f80e 100644 --- a/playstore/validator.go +++ b/playstore/validator.go @@ -1,6 +1,7 @@ package playstore import ( + "context" "crypto" "crypto/rsa" "crypto/sha1" @@ -10,7 +11,6 @@ import ( "net/http" "time" - "golang.org/x/net/context" "golang.org/x/oauth2" "golang.org/x/oauth2/google" androidpublisher "google.golang.org/api/androidpublisher/v2"