move transport (#1967)

This commit is contained in:
Asim Aslam
2020-08-23 18:37:22 +01:00
committed by GitHub
parent d60d85de5c
commit c62d1d5eb8
49 changed files with 56 additions and 56 deletions

View File

@@ -8,12 +8,12 @@ import (
bmemory "github.com/micro/go-micro/v3/broker/memory"
"github.com/micro/go-micro/v3/client"
"github.com/micro/go-micro/v3/client/grpc"
tmemory "github.com/micro/go-micro/v3/network/transport/memory"
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"
grpcsrv "github.com/micro/go-micro/v3/server/grpc"
tmemory "github.com/micro/go-micro/v3/transport/memory"
cw "github.com/micro/go-micro/v3/util/client"
)

View File

@@ -4,7 +4,7 @@ package io
import (
"io"
"github.com/micro/go-micro/v3/transport"
"github.com/micro/go-micro/v3/network/transport"
)
type rwc struct {

View File

@@ -5,7 +5,7 @@ import (
"time"
"github.com/google/uuid"
"github.com/micro/go-micro/v3/transport"
"github.com/micro/go-micro/v3/network/transport"
)
type pool struct {

View File

@@ -4,8 +4,8 @@ import (
"testing"
"time"
"github.com/micro/go-micro/v3/transport"
"github.com/micro/go-micro/v3/transport/memory"
"github.com/micro/go-micro/v3/network/transport"
"github.com/micro/go-micro/v3/network/transport/memory"
)
func testPool(t *testing.T, size int, ttl time.Duration) {

View File

@@ -3,7 +3,7 @@ package pool
import (
"time"
"github.com/micro/go-micro/v3/transport"
"github.com/micro/go-micro/v3/network/transport"
)
type Options struct {

View File

@@ -4,7 +4,7 @@ package pool
import (
"time"
"github.com/micro/go-micro/v3/transport"
"github.com/micro/go-micro/v3/network/transport"
)
// Pool is an interface for connection pooling

View File

@@ -4,7 +4,7 @@ package socket
import (
"io"
"github.com/micro/go-micro/v3/transport"
"github.com/micro/go-micro/v3/network/transport"
)
// Socket is our pseudo socket for transport.Socket