From 1734b4cc90ebba52b08e622493c88124db720752 Mon Sep 17 00:00:00 2001 From: Soheil Hassas Yeganeh Date: Sun, 30 Aug 2015 21:15:41 -0400 Subject: [PATCH] Change the import path to the new grpc-go repo gRPC examples have been migrated from the grpc-common repo to their language-specific repos. This commit uses the new import path. --- example_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_test.go b/example_test.go index 18d7213..42c0190 100644 --- a/example_test.go +++ b/example_test.go @@ -13,7 +13,7 @@ import ( "golang.org/x/net/context" "golang.org/x/net/websocket" - grpchello "github.com/grpc/grpc-common/go/helloworld" + grpchello "github.com/grpc/grpc-go/examples/helloworld/helloworld" "github.com/soheilhy/cmux" )