zwpanel/service/structs/iniConfig.go
2023-11-08 21:53:07 +08:00

10 lines
278 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}