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

15 lines
279 B
Go

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