client.go 580 B

123456789101112131415161718192021222324
  1. package v1
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/library/net/rpc/warden"
  6. "google.golang.org/grpc"
  7. )
  8. // DiscoveryAppID .
  9. const DiscoveryAppID = "main.archive.creative"
  10. // NewClient new grpc client
  11. func NewClient(cfg *warden.ClientConfig, opts ...grpc.DialOption) (CreativeClient, error) {
  12. client := warden.NewClient(cfg, opts...)
  13. // cc, err := client.Dial(context.Background(), "127.0.0.1:9000")
  14. cc, err := client.Dial(context.Background(), fmt.Sprintf("discovery://default/%s", DiscoveryAppID))
  15. if err != nil {
  16. return nil, err
  17. }
  18. return NewCreativeClient(cc), nil
  19. }