move transport back

This commit is contained in:
Asim Aslam
2019-07-09 18:41:26 +01:00
parent 97282a5377
commit 0bf54c122f
39 changed files with 42 additions and 42 deletions

View File

@@ -38,10 +38,10 @@ import (
"github.com/micro/go-micro/client/selector/static"
// transports
"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"
"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"
)
type Cmd interface {

View File

@@ -6,7 +6,7 @@ import (
"github.com/micro/go-micro/broker"
"github.com/micro/go-micro/client"
"github.com/micro/go-micro/client/selector"
"github.com/micro/go-micro/network/transport"
"github.com/micro/go-micro/transport"
"github.com/micro/go-micro/registry"
"github.com/micro/go-micro/server"
)