Files
go-zero/dq/config.go

16 lines
188 B
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package dq
import "zero/core/stores/redis"
type (
Beanstalk struct {
Endpoint string
Tube string
}
DqConf struct {
Beanstalks []Beanstalk
Redis redis.RedisConf
}
)