Moved repository owner

This commit is contained in:
Junpei Tsuji
2018-02-08 15:02:47 +09:00
parent 6bf6dcc0a8
commit 5be483907d
2 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
language: go
go:
- 1.8
- 1.9
before_install:
- sudo pip install codecov
install:

View File

@@ -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() {