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

15 lines
277 B
Go
Raw Normal View History

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