mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-03 00:38:40 +08:00
16 lines
188 B
Go
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
|
|
}
|
|
)
|