10 lines
230 B
Go
10 lines
230 B
Go
|
package configs
|
||
|
|
||
|
type Redis struct {
|
||
|
Addr string `yaml:"addr"`
|
||
|
Password string `yaml:"password"`
|
||
|
DB int `yaml:"db"`
|
||
|
PoolSize int `yaml:"pool_size"`
|
||
|
MinidleConns int `yaml:"minidle_conns"`
|
||
|
}
|