service.go 475 B

123456789101112131415161718192021222324252627
  1. package tvvip
  2. import (
  3. "go-common/app/interface/main/tv/conf"
  4. "go-common/app/service/main/tv/api"
  5. "go-common/library/log"
  6. )
  7. // Service .
  8. type Service struct {
  9. conf *conf.Config
  10. tvVipClient api.TVServiceClient
  11. }
  12. // New .
  13. func New(c *conf.Config) *Service {
  14. tvVipClient, err := api.NewClient(c.TvVipClient)
  15. if err != nil {
  16. log.Error("client.Dial err(%v)", err)
  17. panic(err)
  18. }
  19. srv := &Service{
  20. conf: c,
  21. tvVipClient: tvVipClient,
  22. }
  23. return srv
  24. }