mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-01 07:35:58 +08:00
15 lines
277 B
Go
15 lines
277 B
Go
|
|
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
|
||
|
|
}
|