diff options
author | Dan Ciruli <ciruli@gmail.com> | 2015-02-24 11:56:02 -0800 |
---|---|---|
committer | Dan Ciruli <ciruli@gmail.com> | 2015-02-24 11:56:02 -0800 |
commit | cd3379fbeb80bd9741eda750ecbd2cc2e1474d23 (patch) | |
tree | 4af807739b4b392b8c4e3d39cc7871a68df65ffd /go/greeter_client | |
parent | df2489b0ea8d12a7b94b03df60c39a29b47845f8 (diff) |
Fixing path for pb import
Was missing grpc in the path
Diffstat (limited to 'go/greeter_client')
-rw-r--r-- | go/greeter_client/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/greeter_client/main.go b/go/greeter_client/main.go index 3398040d7e..065ae852bc 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" ) |