Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
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
}