mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
27 lines
662 B
Go
27 lines
662 B
Go
package rpcclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"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/auth"
|
|
)
|
|
|
|
func NewAuth(discov discoveryregistry.SvcDiscoveryRegistry) *Auth {
|
|
conn, err := discov.GetConn(context.Background(), config.Config.RpcRegisterName.OpenImAuthName)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
client := auth.NewAuthClient(conn)
|
|
return &Auth{discov: discov, conn: conn, Client: client}
|
|
}
|
|
|
|
type Auth struct {
|
|
conn grpc.ClientConnInterface
|
|
Client auth.AuthClient
|
|
discov discoveryregistry.SvcDiscoveryRegistry
|
|
}
|