Files
open-im-server-deploy/pkg/rpcli/msggateway.go
kim.dev.6789 e50142a3b9 复制项目
2026-01-14 22:16:44 +08:00

15 lines
300 B
Go

package rpcli
import (
"git.imall.cloud/openim/protocol/msggateway"
"google.golang.org/grpc"
)
func NewMsgGatewayClient(cc grpc.ClientConnInterface) *MsgGatewayClient {
return &MsgGatewayClient{msggateway.NewMsgGatewayClient(cc)}
}
type MsgGatewayClient struct {
msggateway.MsgGatewayClient
}