biblio/conf/redis.go

9 lines
221 B
Go
Raw Normal View History

2022-10-04 21:09:31 +08:00
package conf
type Redis struct {
Host string `json:"host" yaml:"host"`
Port int `json:"port" yaml:"port"`
Database int `json:"database" yaml:"database"`
Password string `json:"password" yaml:"password"`
}