Files
2023-11-08 21:53:07 +08:00

10 lines
278 B
Go

package structs
// 配置文件redis
type IniConfigRedis struct {
Address string `ini:"address"` // 地址:localhost:6379
Password string `ini:"password"` // 密码
Prefix string `ini:"prefix"` // key前缀
Db int `ini:"db"` // 数据库,默认0
}