go-common/app/service/live/resource/api/grpc/v2/client.go

30 lines
603 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package v2
import (
"context"
"google.golang.org/grpc"
"go-common/library/net/rpc/warden"
)
// AppID 应用程序标识
const AppID = "live.resource"
// Client 对外服务接口
type Client struct {
UserResourceClient
}
// NewClient 用户资源 grpc Client
func NewClient(cfg *warden.ClientConfig, opts ...grpc.DialOption) (*Client, error) {
client := warden.NewClient(cfg, opts...)
conn, err := client.Dial(context.Background(), "discovery://default/"+AppID)
if err != nil {
return nil, err
}
cli := &Client{}
cli.UserResourceClient = NewUserResourceClient(conn)
return cli, nil
}