You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
663 B
26 lines
663 B
1 year ago
|
package rpcclient
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/third"
|
||
|
"google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
type Third struct {
|
||
|
conn *grpc.ClientConn
|
||
|
Client third.ThirdClient
|
||
|
discov discoveryregistry.SvcDiscoveryRegistry
|
||
|
}
|
||
|
|
||
|
func NewThird(discov discoveryregistry.SvcDiscoveryRegistry) *Third {
|
||
|
conn, err := discov.GetConn(context.Background(), config.Config.RpcRegisterName.OpenImThirdName)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
client := third.NewThirdClient(conn)
|
||
|
return &Third{discov: discov, Client: client, conn: conn}
|
||
|
}
|