package config type Redis struct { DB int `mapstructure:"db" json:"db" yaml:"db"` // 目标数据库 Addr string `mapstructure:"addr" json:"addr" yaml:"addr"` // 端口 Password string `mapstructure:"password" json:"password" yaml:"password"` // 密码 }