diff --git a/examples/grpc/gin/main.go b/examples/grpc/gin/main.go index 8fef6394..500c100f 100644 --- a/examples/grpc/gin/main.go +++ b/examples/grpc/gin/main.go @@ -6,8 +6,8 @@ import ( "net/http" "github.com/gin-gonic/gin" - "google.golang.org/grpc" pb "github.com/gin-gonic/gin/examples/grpc/pb" + "google.golang.org/grpc" ) func main() { diff --git a/examples/grpc/grpc/server.go b/examples/grpc/grpc/server.go index 6cfa81f0..d9bf9fc5 100644 --- a/examples/grpc/grpc/server.go +++ b/examples/grpc/grpc/server.go @@ -4,10 +4,10 @@ import ( "log" "net" + pb "github.com/gin-gonic/gin/examples/grpc/pb" "golang.org/x/net/context" "google.golang.org/grpc" "google.golang.org/grpc/reflection" - pb "github.com/gin-gonic/gin/examples/grpc/pb" ) // server is used to implement helloworld.GreeterServer.