rename rpcx to zrpc

This commit is contained in:
kevin
2020-09-18 11:41:52 +08:00
parent 26e16107ce
commit 0b1ee79d3a
110 changed files with 154 additions and 154 deletions

View File

@@ -14,7 +14,7 @@ import (
"github.com/tal-tech/go-zero/core/conf"
"github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/rpcx"
"github.com/tal-tech/go-zero/zrpc"
"google.golang.org/grpc"
)
@@ -28,7 +28,7 @@ func main() {
ctx := svc.NewServiceContext(c)
adderSrv := server.NewAdderServer(ctx)
s, err := rpcx.NewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
s, err := zrpc.NewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
add.RegisterAdderServer(grpcServer, adderSrv)
})
logx.Must(err)

View File

@@ -10,7 +10,7 @@ import (
"context"
"github.com/tal-tech/go-zero/core/jsonx"
"github.com/tal-tech/go-zero/rpcx"
"github.com/tal-tech/go-zero/zrpc"
)
type (
@@ -19,11 +19,11 @@ type (
}
defaultAdder struct {
cli rpcx.Client
cli zrpc.Client
}
)
func NewAdder(cli rpcx.Client) Adder {
func NewAdder(cli zrpc.Client) Adder {
return &defaultAdder{
cli: cli,
}

View File

@@ -2,12 +2,12 @@ package config
import (
"github.com/tal-tech/go-zero/core/stores/cache"
"github.com/tal-tech/go-zero/rpcx"
"github.com/tal-tech/go-zero/zrpc"
)
type Config struct {
rpcx.RpcServerConf
zrpc.RpcServerConf
DataSource string
Table string
Cache cache.CacheConf
}
}

View File

@@ -14,7 +14,7 @@ import (
"github.com/tal-tech/go-zero/core/conf"
"github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/rpcx"
"github.com/tal-tech/go-zero/zrpc"
"google.golang.org/grpc"
)
@@ -28,7 +28,7 @@ func main() {
ctx := svc.NewServiceContext(c)
checkerSrv := server.NewCheckerServer(ctx)
s, err := rpcx.NewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
s, err := zrpc.NewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
check.RegisterCheckerServer(grpcServer, checkerSrv)
})
logx.Must(err)

View File

@@ -10,7 +10,7 @@ import (
"context"
"github.com/tal-tech/go-zero/core/jsonx"
"github.com/tal-tech/go-zero/rpcx"
"github.com/tal-tech/go-zero/zrpc"
)
type (
@@ -19,11 +19,11 @@ type (
}
defaultChecker struct {
cli rpcx.Client
cli zrpc.Client
}
)
func NewChecker(cli rpcx.Client) Checker {
func NewChecker(cli zrpc.Client) Checker {
return &defaultChecker{
cli: cli,
}

View File

@@ -2,12 +2,12 @@ package config
import (
"github.com/tal-tech/go-zero/core/stores/cache"
"github.com/tal-tech/go-zero/rpcx"
"github.com/tal-tech/go-zero/zrpc"
)
type Config struct {
rpcx.RpcServerConf
zrpc.RpcServerConf
DataSource string
Table string
Cache cache.CacheConf
}
}