Files
sundynix-go/config/config_redis.go
T
2025-04-24 21:54:49 +08:00

8 lines
239 B
Go

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