jpush.go 218 B

12345678910111213
  1. package conf
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. // JPushConfig 极光推送配置
  6. type JPushConfig struct {
  7. AppKey string
  8. SecretKey string
  9. Timeout xtime.Duration
  10. ApnsProduction bool
  11. }