config.go 188 B

123456789101112131415
  1. package dq
  2. import "zero/core/stores/redis"
  3. type (
  4. Beanstalk struct {
  5. Endpoint string
  6. Tube string
  7. }
  8. DqConf struct {
  9. Beanstalks []Beanstalk
  10. Redis redis.RedisConf
  11. }
  12. )