This commit is contained in:
Sun
2023-11-08 21:53:07 +08:00
commit 211c3071dc
245 changed files with 39293 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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
}