liujiandao
2024-03-15 aa3c65582bad107cc94a6ac3ba12605ca3c07c8a
model/grpc_init/crm_aps_init.go
@@ -10,7 +10,6 @@
var (
   ProductInventoryServiceConn *grpc.ClientConn
   CrmApsGrpcServiceConn       *grpc.ClientConn
   CrmSrmGrpcServiceConn       *grpc.ClientConn
)
func InitCrmApsGrpcServiceConn() {
@@ -40,20 +39,5 @@
func CloseProductInventoryServiceConn() {
   if ProductInventoryServiceConn != nil {
      ProductInventoryServiceConn.Close()
   }
}
func InitCrmSrmGrpcServiceConn() {
   var err error
   CrmSrmGrpcServiceConn, err = grpc.Dial(conf.Conf.GrpcServiceAddr.SRM, grpc.WithTransportCredentials(insecure.NewCredentials()))
   if err != nil {
      logx.Errorf("grpc dial product service error: %v", err.Error())
      return
   }
}
func CloseCrmSrmGrpcServiceConn() {
   if CrmSrmGrpcServiceConn != nil {
      CrmSrmGrpcServiceConn.Close()
   }
}