goweb-gin-demo/config/redis.go

8 lines
326 B
Go
Raw Normal View History

2021-10-29 14:39:50 +08:00
package config
type Redis struct {
DB int `mapstructure:"db" json:"db" yaml:"db"` // redis的哪个数据库
Addr string `mapstructure:"addr" json:"addr" yaml:"addr"` // 服务器地址:端口
Password string `mapstructure:"password" json:"password" yaml:"password"` // 密码
}