diff options
author | Tim Emiola <temiola@google.com> | 2015-02-24 17:22:37 -0800 |
---|---|---|
committer | Tim Emiola <temiola@google.com> | 2015-02-24 17:22:37 -0800 |
commit | 507a2410f1071a529ea4883f7f6b193043b08d5e (patch) | |
tree | 789c1d2b9eb30973d11342c38d50db39093e799d /go | |
parent | 6b99bc5b7f73e2c590cce4e8b53cf8bc1fee796d (diff) |
Fixes more go package references
Diffstat (limited to 'go')
-rw-r--r-- | go/greeter_client/main.go | 2 | ||||
-rw-r--r-- | go/greeter_server/main.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/go/greeter_client/main.go b/go/greeter_client/main.go index abe33c0e2a..0ca5a00035 100644 --- a/go/greeter_client/main.go +++ b/go/greeter_client/main.go @@ -37,7 +37,7 @@ import ( "log" "os" - pb "github.com/grpc-common/go/helloworld" + pb "github.com/grpc/grpc-common/go/helloworld" "golang.org/x/net/context" "google.golang.org/grpc" ) diff --git a/go/greeter_server/main.go b/go/greeter_server/main.go index 231f5c607b..c7fa06ad18 100644 --- a/go/greeter_server/main.go +++ b/go/greeter_server/main.go @@ -37,7 +37,7 @@ import ( "log" "net" - pb "github.com/grpc-common/go/helloworld" + pb "github.com/grpc/grpc-common/go/helloworld" "golang.org/x/net/context" "google.golang.org/grpc" ) |