From 724f1bcb7091096111553969f724affed9e57682 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sun, 23 Aug 2020 18:37:22 +0100 Subject: [PATCH] move transport (#1967) --- grpc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc_test.go b/grpc_test.go index e53240b..dbe157a 100644 --- a/grpc_test.go +++ b/grpc_test.go @@ -10,13 +10,13 @@ import ( gcli "github.com/micro/go-micro/v3/client/grpc" "github.com/micro/go-micro/v3/errors" pberr "github.com/micro/go-micro/v3/errors/proto" + tgrpc "github.com/micro/go-micro/v3/network/transport/grpc" rmemory "github.com/micro/go-micro/v3/registry/memory" "github.com/micro/go-micro/v3/router" rtreg "github.com/micro/go-micro/v3/router/registry" "github.com/micro/go-micro/v3/server" gsrv "github.com/micro/go-micro/v3/server/grpc" pb "github.com/micro/go-micro/v3/server/grpc/proto" - tgrpc "github.com/micro/go-micro/v3/transport/grpc" "google.golang.org/grpc" "google.golang.org/grpc/status" )