Skip to content

Commit d2bce62

Browse files
Merge pull request #24 from goark/migrated-reps
Migrated repository to github.com/goark/pa-api
2 parents b01b24a + ea00060 commit d2bce62

File tree

13 files changed

+33
-31
lines changed

13 files changed

+33
-31
lines changed

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# [pa-api] -- APIs for Amazon Product Advertising API v5 by Golang
22

3-
[![check vulns](https://github.com/spiegel-im-spiegel/pa-api/workflows/vulns/badge.svg)](https://github.com/spiegel-im-spiegel/pa-api/actions)
4-
[![lint status](https://github.com/spiegel-im-spiegel/pa-api/workflows/lint/badge.svg)](https://github.com/spiegel-im-spiegel/pa-api/actions)
5-
[![GitHub license](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/spiegel-im-spiegel/pa-api/master/LICENSE)
6-
[![GitHub release](https://img.shields.io/github/release/spiegel-im-spiegel/pa-api.svg)](https://github.com/spiegel-im-spiegel/pa-api/releases/latest)
3+
[![check vulns](https://github.com/goark/pa-api/workflows/vulns/badge.svg)](https://github.com/goark/pa-api/actions)
4+
[![lint status](https://github.com/goark/pa-api/workflows/lint/badge.svg)](https://github.com/goark/pa-api/actions)
5+
[![GitHub license](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/goark/pa-api/master/LICENSE)
6+
[![GitHub release](https://img.shields.io/github/release/goark/pa-api.svg)](https://github.com/goark/pa-api/releases/latest)
77

88
This package is required Go 1.16 or later.
99

10+
**Migrated repository to [github.com/goark/pa-api][pa-api]**
11+
1012
## Usage
1113

1214
### Create PA-API Information
@@ -79,9 +81,9 @@ package main
7981
import (
8082
"fmt"
8183

82-
paapi5 "github.com/spiegel-im-spiegel/pa-api"
83-
"github.com/spiegel-im-spiegel/pa-api/entity"
84-
"github.com/spiegel-im-spiegel/pa-api/query"
84+
paapi5 "github.com/goark/pa-api"
85+
"github.com/goark/pa-api/entity"
86+
"github.com/goark/pa-api/query"
8587
)
8688

8789
func main() {
@@ -127,9 +129,9 @@ package main
127129
import (
128130
"fmt"
129131

130-
paapi5 "github.com/spiegel-im-spiegel/pa-api"
131-
"github.com/spiegel-im-spiegel/pa-api/entity"
132-
"github.com/spiegel-im-spiegel/pa-api/query"
132+
paapi5 "github.com/goark/pa-api"
133+
"github.com/goark/pa-api/entity"
134+
"github.com/goark/pa-api/query"
133135
)
134136

135137
func main() {
@@ -175,10 +177,10 @@ body, err := client.RequestContext(context.Background(), q)
175177

176178
## Contributors
177179

178-
Many thanks for [contributors](https://github.com/spiegel-im-spiegel/pa-api/graphs/contributors "Contributors to spiegel-im-spiegel/pa-api")
180+
Many thanks for [contributors](https://github.com/goark/pa-api/graphs/contributors "Contributors to goark/pa-api")
179181

180182
## Links
181183

182184
- [Go 言語用 PA-API v5 クライアント・パッケージ — リリース情報 | text.Baldanders.info](https://text.baldanders.info/release/pa-api-v5/)
183185

184-
[pa-api]: https://github.com/spiegel-im-spiegel/pa-api "spiegel-im-spiegel/pa-api: APIs for Amazon Product Advertising API v5 by Golang"
186+
[pa-api]: https://github.com/goark/pa-api "goark/pa-api: APIs for Amazon Product Advertising API v5 by Golang"

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tasks:
1111
cmds:
1212
- go mod verify
1313
- go test -shuffle on ./...
14-
- docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.42.1 golangci-lint run --enable gosec --timeout 3m0s ./...
14+
- docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.44.2 golangci-lint run --enable gosec --timeout 3m0s ./...
1515
sources:
1616
- ./go.mod
1717
- '**/*.go'

client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010
"time"
1111

12-
"github.com/spiegel-im-spiegel/errs"
13-
"github.com/spiegel-im-spiegel/fetch"
12+
"github.com/goark/errs"
13+
"github.com/goark/fetch"
1414
)
1515

1616
const (

entity/date.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"time"
77

8-
"github.com/spiegel-im-spiegel/errs"
8+
"github.com/goark/errs"
99
)
1010

1111
//Time is wrapper class of time.Time

entity/entity.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"encoding/json"
66

7-
"github.com/spiegel-im-spiegel/errs"
7+
"github.com/goark/errs"
88
)
99

1010
type Image struct {

example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"net/http"
77

8-
paapi5 "github.com/spiegel-im-spiegel/pa-api"
8+
paapi5 "github.com/goark/pa-api"
99
)
1010

1111
func ExampleServer() {

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
module github.com/spiegel-im-spiegel/pa-api
1+
module github.com/goark/pa-api
22

33
go 1.17
44

55
require (
6-
github.com/spiegel-im-spiegel/errs v1.0.5
7-
github.com/spiegel-im-spiegel/fetch v0.2.5
6+
github.com/goark/errs v1.1.0
7+
github.com/goark/fetch v0.3.0
88
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github.com/spiegel-im-spiegel/errs v1.0.5 h1:5qAUEXPZgF4ZIUmw2vpe7OgDP0C8DIV67BKwjfLidJI=
2-
github.com/spiegel-im-spiegel/errs v1.0.5/go.mod h1:mOsWcUc9hpRXjwdgJqJ3E2n6ibkYFvhNck1QD0ZVGOM=
3-
github.com/spiegel-im-spiegel/fetch v0.2.5 h1:S3yMboi2AT8DqubEed3OQfRHLABK+R44ooEHNw5fqTk=
4-
github.com/spiegel-im-spiegel/fetch v0.2.5/go.mod h1:1O8nwPhJvt5JGBwVPzngcT71Y65us4GCyjuVyvCN4sk=
1+
github.com/goark/errs v1.1.0 h1:FKnyw4LVyRADIjM8Nj0Up6r0/y5cfADvZAd1E+tthXE=
2+
github.com/goark/errs v1.1.0/go.mod h1:TtaPEoadm2mzqzfXdkkfpN2xuniCFm2q4JH+c1qzaqw=
3+
github.com/goark/fetch v0.3.0 h1:2m32EGOLBi99RzI5urFfmv5++CMqfenVw7NH8z/lbX8=
4+
github.com/goark/fetch v0.3.0/go.mod h1:sqDdPbbHeIjDVeHrgvzhHpkUr8X9pVC9DgJoVwU02x0=

query/getitems.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package query
22

33
import (
4-
paapi5 "github.com/spiegel-im-spiegel/pa-api"
4+
paapi5 "github.com/goark/pa-api"
55
)
66

77
//GetItems type is embedded Query for GetItems operation in PA-API v5

query/query.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package query
33
import (
44
"encoding/json"
55

6-
"github.com/spiegel-im-spiegel/errs"
7-
paapi5 "github.com/spiegel-im-spiegel/pa-api"
6+
"github.com/goark/errs"
7+
paapi5 "github.com/goark/pa-api"
88
)
99

1010
//Query is a query data class for PA-API v5

0 commit comments

Comments
 (0)