Files
open-im-server/pkg/rpcli/msggateway.go
T

15 lines
298 B
Go
Raw Normal View History

2024-12-24 10:51:38 +08:00
package rpcli
import (
"github.com/openimsdk/protocol/msggateway"
"google.golang.org/grpc"
)
func NewMsgGatewayClient(cc grpc.ClientConnInterface) *MsgGatewayClient {
return &MsgGatewayClient{msggateway.NewMsgGatewayClient(cc)}
}
type MsgGatewayClient struct {
msggateway.MsgGatewayClient
}