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

15 lines
255 B
Go

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