Move transport to network/transport

This commit is contained in:
Asim Aslam
2019-07-07 10:37:34 +01:00
parent eafc930f84
commit d2d6841f02
46 changed files with 49 additions and 49 deletions

View File

@@ -38,10 +38,10 @@ import (
"github.com/micro/go-micro/client/selector/static"
// transports
"github.com/micro/go-micro/transport"
tgrpc "github.com/micro/go-micro/transport/grpc"
thttp "github.com/micro/go-micro/transport/http"
tmem "github.com/micro/go-micro/transport/memory"
"github.com/micro/go-micro/network/transport"
tgrpc "github.com/micro/go-micro/network/transport/grpc"
thttp "github.com/micro/go-micro/network/transport/http"
tmem "github.com/micro/go-micro/network/transport/memory"
)
type Cmd interface {

View File

@@ -8,7 +8,7 @@ import (
"github.com/micro/go-micro/client/selector"
"github.com/micro/go-micro/registry"
"github.com/micro/go-micro/server"
"github.com/micro/go-micro/transport"
"github.com/micro/go-micro/network/transport"
)
type Options struct {