aboutsummaryrefslogtreecommitdiffhomepage
path: root/go
diff options
context:
space:
mode:
authorGravatar Tim Emiola <temiola@google.com>2015-02-24 17:22:37 -0800
committerGravatar Tim Emiola <temiola@google.com>2015-02-24 17:22:37 -0800
commit507a2410f1071a529ea4883f7f6b193043b08d5e (patch)
tree789c1d2b9eb30973d11342c38d50db39093e799d /go
parent6b99bc5b7f73e2c590cce4e8b53cf8bc1fee796d (diff)
Fixes more go package references
Diffstat (limited to 'go')
-rw-r--r--go/greeter_client/main.go2
-rw-r--r--go/greeter_server/main.go2
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"
)