Files
mayfly-go/base/config/redis.go
2021-04-16 15:10:07 +08:00

9 lines
164 B
Go

package config
type Redis struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
Password string `yaml:"password"`
Db int `yaml:"db"`
}