diff --git a/cmd/api/internal/svc/serviceContext.go b/cmd/api/internal/svc/serviceContext.go index 0fbadae..6339c76 100755 --- a/cmd/api/internal/svc/serviceContext.go +++ b/cmd/api/internal/svc/serviceContext.go @@ -3,9 +3,11 @@ package svc import ( "github.com/zeromicro/go-zero/core/stores/sqlx" "github.com/zeromicro/go-zero/rest" + "github.com/zeromicro/go-zero/zrpc" "rs/cmd/api/internal/config" "rs/cmd/api/internal/types" "rs/genModel" + "rs/rpc/transferClient" ) type ServiceContext struct { @@ -14,15 +16,15 @@ type ServiceContext struct { } func NewServiceContext(c config.Config) *ServiceContext { - //conn := zrpc.MustNewClient(zrpc.RpcClientConf{ - // Target: c.Nacos.Target, - //}) + conn := zrpc.MustNewClient(zrpc.RpcClientConf{ + Target: c.Nacos.Target, + }) sqlConn := sqlx.NewMysql(c.DB.Coupon.DataSource) - //client := transferClient.NewTransfer(conn) + client := transferClient.NewTransfer(conn) base := types.BaseServiceContext{ - Config: c, - //TransferRpc: client, + Config: c, + TransferRpc: client, ProductRedirectConf: genModel.NewProductRedirectConfModel(sqlConn, c.Cache), Merchant: genModel.NewMerchantModel(sqlConn, c.Cache), }