From 5be483907d3e65a2ade9021796f0056f41b7118a Mon Sep 17 00:00:00 2001 From: Junpei Tsuji Date: Thu, 8 Feb 2018 15:02:47 +0900 Subject: [PATCH] Moved repository owner --- .travis.yml | 2 +- README.md | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index c184317..28f951e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: go go: - - 1.8 + - 1.9 before_install: - sudo pip install codecov install: diff --git a/README.md b/README.md index 73321ed..3cbfb10 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ go-iap ====== -![](https://img.shields.io/badge/golang-1.8.0-blue.svg?style=flat) -[![Build Status](https://travis-ci.org/dogenzaka/go-iap.svg?branch=master)](https://travis-ci.org/dogenzaka/go-iap) -[![codecov.io](https://codecov.io/github/dogenzaka/go-iap/coverage.svg?branch=master)](https://codecov.io/github/dogenzaka/go-iap?branch=master) +![](https://img.shields.io/badge/golang-1.9-blue.svg?style=flat) +[![Build Status](https://travis-ci.org/awa/go-iap.svg?branch=master)](https://travis-ci.org/awa/go-iap) +[![codecov.io](https://codecov.io/github/awa/go-iap/coverage.svg?branch=master)](https://codecov.io/github/awa/go-iap?branch=master) go-iap verifies the purchase receipt via AppStore, GooglePlayStore or Amazon AppStore. Current API Documents: -* AppStore: [![GoDoc](https://godoc.org/github.com/dogenzaka/go-iap/appstore?status.svg)](https://godoc.org/github.com/dogenzaka/go-iap/appstore) -* GooglePlay: [![GoDoc](https://godoc.org/github.com/dogenzaka/go-iap/playstore?status.svg)](https://godoc.org/github.com/dogenzaka/go-iap/playstore) -* Amazon AppStore: [![GoDoc](https://godoc.org/github.com/dogenzaka/go-iap/amazon?status.svg)](https://godoc.org/github.com/dogenzaka/go-iap/amazon) +* AppStore: [![GoDoc](https://godoc.org/github.com/awa/go-iap/appstore?status.svg)](https://godoc.org/github.com/awa/go-iap/appstore) +* GooglePlay: [![GoDoc](https://godoc.org/github.com/awa/go-iap/playstore?status.svg)](https://godoc.org/github.com/awa/go-iap/playstore) +* Amazon AppStore: [![GoDoc](https://godoc.org/github.com/awa/go-iap/amazon?status.svg)](https://godoc.org/github.com/awa/go-iap/amazon) # Dependencies @@ -23,9 +23,9 @@ go get google.golang.org/api/androidpublisher/v2 # Installation ``` -go get github.com/dogenzaka/go-iap/appstore -go get github.com/dogenzaka/go-iap/playstore -go get github.com/dogenzaka/go-iap/amazon +go get github.com/awa/go-iap/appstore +go get github.com/awa/go-iap/playstore +go get github.com/awa/go-iap/amazon ``` @@ -35,7 +35,7 @@ go get github.com/dogenzaka/go-iap/amazon ``` import( - "github.com/dogenzaka/go-iap/appstore" + "github.com/awa/go-iap/appstore" ) func main() { @@ -54,7 +54,7 @@ func main() { import( "golang.org/x/oauth2" - "github.com/dogenzaka/go-iap/playstore" + "github.com/awa/go-iap/playstore" ) func main() { @@ -74,7 +74,7 @@ func main() { ``` import( - "github.com/dogenzaka/go-iap/amazon" + "github.com/awa/go-iap/amazon" ) func main() {