Skip to content

Commit ebc0206

Browse files
committed
Rename as github.com/x-izumin/grapi
1 parent aafeb14 commit ebc0206

File tree

120 files changed

+246
-249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+246
-249
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# ![grapi](./grapi.png)
2-
[![CI](https://github.com/izumin5210/grapi/workflows/CI/badge.svg)](https://github.com/izumin5210/grapi/actions?workflow=CI)
3-
[![GoDoc](https://godoc.org/github.com/izumin5210/grapi/pkg/grapiserver?status.svg)](https://godoc.org/github.com/izumin5210/grapi/pkg/grapiserver)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/izumin5210/grapi)](https://goreportcard.com/report/github.com/izumin5210/grapi)
5-
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/izumin5210/grapi)](http://github.com/izumin5210/grapi/releases/latest)
6-
[![license](https://img.shields.io/github/license/izumin5210/grapi.svg)](./LICENSE)
2+
[![CI](https://github.com/x-izumin/grapi/workflows/CI/badge.svg)](https://github.com/x-izumin/grapi/actions?workflow=CI)
3+
[![GoDoc](https://godoc.org/github.com/x-izumin/grapi/pkg/grapiserver?status.svg)](https://godoc.org/github.com/x-izumin/grapi/pkg/grapiserver)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/x-izumin/grapi)](https://goreportcard.com/report/github.com/x-izumin/grapi)
5+
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/x-izumin/grapi)](http://github.com/x-izumin/grapi/releases/latest)
6+
[![license](https://img.shields.io/github/license/x-izumin/grapi.svg)](./LICENSE)
77

88
:open_mouth: A surprisingly easy API server and generator in gRPC and Go
99

@@ -253,7 +253,7 @@ $ grapi build
253253
- macOS
254254
- `brew install izumin5210/tools/grapi`
255255
- others
256-
- `go get github.com/izumin5210/grapi/cmd/grapi`
256+
- `go get github.com/x-izumin/grapi/cmd/grapi`
257257
1. **dep** or **Modules**
258258
- [dep](https://golang.github.io/dep/)
259259
- macOS

_tests/e2e/.snapshots/TestE2E_withModules--cmd-server-run.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"github.com/srvc/appctx"
55

6-
"github.com/izumin5210/grapi/pkg/grapiserver"
6+
"github.com/x-izumin/grapi/pkg/grapiserver"
77
)
88

99
func run() error {
@@ -18,4 +18,3 @@ func run() error {
1818
)
1919
return s.Serve(ctx)
2020
}
21-

_tests/e2e/.snapshots/TestE2E_withModules--tools.go

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_tests/e2e/main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
var (
2828
grapiCmd = flag.String("grapi", "grapi", "path of grapi command")
29-
grapiURL = flag.String("grapi-url", "", "url for replacing github.com/izumin5210/grapi")
29+
grapiURL = flag.String("grapi-url", "", "url for replacing github.com/x-izumin/grapi")
3030
revision = flag.String("revision", "", "target revision")
3131
)
3232

@@ -315,7 +315,7 @@ func updateServerImpl(t *testing.T, rootPath string) {
315315
&ast.ImportSpec{
316316
Path: &ast.BasicLit{
317317
Kind: token.STRING,
318-
Value: strconv.Quote("github.com/izumin5210/grapi/pkg/grapiserver"),
318+
Value: strconv.Quote("github.com/x-izumin/grapi/pkg/grapiserver"),
319319
},
320320
},
321321
&ast.ImportSpec{

cmd/grapi-gen-command/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"github.com/spf13/cobra"
55

6-
_ "github.com/izumin5210/grapi/cmd/grapi-gen-command/template"
7-
"github.com/izumin5210/grapi/pkg/gencmd"
6+
_ "github.com/x-izumin/grapi/cmd/grapi-gen-command/template"
7+
"github.com/x-izumin/grapi/pkg/gencmd"
88
)
99

1010
func main() {

cmd/grapi-gen-command/main_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55

66
"github.com/bradleyjkemp/cupaloy/v2"
77
"github.com/izumin5210/clig/pkg/clib"
8-
"github.com/izumin5210/grapi/pkg/cli"
9-
"github.com/izumin5210/grapi/pkg/gencmd"
10-
gencmdtesting "github.com/izumin5210/grapi/pkg/gencmd/testing"
11-
"github.com/izumin5210/grapi/pkg/grapicmd"
128
"github.com/spf13/afero"
9+
"github.com/x-izumin/grapi/pkg/cli"
10+
"github.com/x-izumin/grapi/pkg/gencmd"
11+
gencmdtesting "github.com/x-izumin/grapi/pkg/gencmd/testing"
12+
"github.com/x-izumin/grapi/pkg/grapicmd"
1313
)
1414

1515
func TestCommand(t *testing.T) {

cmd/grapi-gen-scaffold-service/.snapshots/TestRun-kebab-case_name-generate-app-server-foo-bar_baz_server.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package foo
33
import (
44
"context"
55

6-
"github.com/izumin5210/grapi/pkg/grapiserver"
6+
"github.com/x-izumin/grapi/pkg/grapiserver"
77
"google.golang.org/grpc/codes"
88
"google.golang.org/grpc/status"
99

@@ -23,4 +23,3 @@ func NewBarBazServiceServer() BarBazServiceServer {
2323

2424
type barBazServiceServerImpl struct {
2525
}
26-

cmd/grapi-gen-scaffold-service/.snapshots/TestRun-kebab-case_name-generate-app-server-foo-bar_baz_server_register_funcs.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/grapi-gen-scaffold-service/.snapshots/TestRun-nested-generate-app-server-foo-bar_server.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package foo
33
import (
44
"context"
55

6-
"github.com/izumin5210/grapi/pkg/grapiserver"
6+
"github.com/x-izumin/grapi/pkg/grapiserver"
77
"google.golang.org/grpc/codes"
88
"google.golang.org/grpc/status"
99

@@ -23,4 +23,3 @@ func NewBarServiceServer() BarServiceServer {
2323

2424
type barServiceServerImpl struct {
2525
}
26-

cmd/grapi-gen-scaffold-service/.snapshots/TestRun-nested-generate-app-server-foo-bar_server_register_funcs.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)