Skip to content

Commit bb3b7c7

Browse files
committed
Revert "Change imports so that it uses the right packages."
This reverts commit f360448.
1 parent 204f569 commit bb3b7c7

Some content is hidden

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

53 files changed

+100
-100
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: false
33
go:
44
- 1.7.3
55
- tip
6-
go_import_path: github.com/fische/grpc-gateway
6+
go_import_path: github.com/grpc-ecosystem/grpc-gateway
77
cache:
88
directories:
99
- $HOME/local
@@ -15,16 +15,16 @@ before_install:
1515
- go get github.com/golang/lint/golint
1616
- go get github.com/dghubble/sling
1717
install:
18-
- go get github.com/fische/grpc-gateway/protoc-gen-grpc-gateway
19-
- go get github.com/fische/grpc-gateway/runtime
20-
- go get github.com/fische/grpc-gateway/examples
21-
- go get github.com/fische/grpc-gateway/examples/server
18+
- go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
19+
- go get github.com/grpc-ecosystem/grpc-gateway/runtime
20+
- go get github.com/grpc-ecosystem/grpc-gateway/examples
21+
- go get github.com/grpc-ecosystem/grpc-gateway/examples/server
2222
before_script:
2323
- sh -c 'cd examples/browser && npm install'
2424
script:
2525
- make realclean && make examples SWAGGER_CODEGEN="java -jar $HOME/local/swagger-codegen-cli.jar"
2626
- if (go version | grep -qv devel) && [ -z "${GATEWAY_PLUGIN_FLAGS}" ]; then test -z "$(git status --porcelain)" || (git status; git diff; exit 1); fi
27-
- env GLOG_logtostderr=1 go test -race -v github.com/fische/grpc-gateway/...
27+
- env GLOG_logtostderr=1 go test -race -v github.com/grpc-ecosystem/grpc-gateway/...
2828
- make lint
2929
- sh -c 'cd examples/browser && gulp'
3030
env:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# You don't have to rebuild these targets by yourself unless you develop
44
# grpc-gateway itself.
55

6-
PKG=github.com/fische/grpc-gateway
6+
PKG=github.com/grpc-ecosystem/grpc-gateway
77
GO_PLUGIN=bin/protoc-gen-go
88
GO_PLUGIN_PKG=github.com/golang/protobuf/protoc-gen-go
99
SWAGGER_PLUGIN=bin/protoc-gen-swagger
@@ -85,7 +85,7 @@ generate: $(OPTIONS_GO) $(RUNTIME_GO)
8585

8686
.SUFFIXES: .go .proto
8787

88-
$(GO_PLUGIN):
88+
$(GO_PLUGIN):
8989
go get $(GO_PLUGIN_PKG)
9090
go build -o $@ $(GO_PLUGIN_PKG)
9191

examples/browser/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Yuki Yugui Sonoda <[email protected]>"
77
],
88
"license": "SEE LICENSE IN LICENSE file",
9-
"homepage": "https://github.com/fische/grpc-gateway",
9+
"homepage": "https://github.com/grpc-ecosystem/grpc-gateway",
1010
"private": true,
1111
"dependencies": {
1212
"swagger-js": "~> 2.1"

examples/browser/gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ gulp.task('bower', function(){
1616
});
1717

1818
gulp.task('server', shell.task([
19-
'go build -o bin/example-server github.com/fische/grpc-gateway/examples/server/cmd/example-server',
19+
'go build -o bin/example-server github.com/grpc-ecosystem/grpc-gateway/examples/server/cmd/example-server',
2020
]));
2121

2222
gulp.task('gateway', shell.task([
23-
'go build -o bin/example-gw github.com/fische/grpc-gateway/examples',
23+
'go build -o bin/example-gw github.com/grpc-ecosystem/grpc-gateway/examples',
2424
]));
2525

2626
gulp.task('serve-server', ['server'], function(){

examples/client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"reflect"
55
"testing"
66

7-
"github.com/fische/grpc-gateway/examples/clients/abe"
8-
"github.com/fische/grpc-gateway/examples/clients/echo"
7+
"github.com/grpc-ecosystem/grpc-gateway/examples/clients/abe"
8+
"github.com/grpc-ecosystem/grpc-gateway/examples/clients/echo"
99
)
1010

1111
func TestClientIntegration(t *testing.T) {

examples/examplepb/a_bit_of_everything.pb.go

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

examples/examplepb/a_bit_of_everything.pb.gw.go

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

examples/examplepb/echo_service.pb.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.

examples/examplepb/echo_service.pb.gw.go

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

examples/examplepb/flow_combination.pb.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)