9 lines
401 B
Go
9 lines
401 B
Go
package config
|
|
|
|
type Redis struct {
|
|
Host string `mapstructure:"host" json:"host" yaml:"host"` // redis地址
|
|
Port int `mapstructure:"port" json:"port" yaml:"port"` // redis端口
|
|
Password string `mapstructure:"password" json:"password" yaml:"password"` // redis密码
|
|
DB int `mapstructure:"db" json:"db_name" yaml:"db"` // redis数据库
|
|
}
|