go-zero/dq/config.go
2020-07-26 17:09:05 +08:00

16 lines
188 B
Go

package dq
import "zero/core/stores/redis"
type (
Beanstalk struct {
Endpoint string
Tube string
}
DqConf struct {
Beanstalks []Beanstalk
Redis redis.RedisConf
}
)