2020-10-06 11:30:50 +08:00
|
|
|
package config
|
|
|
|
|
|
|
|
type Captcha struct {
|
2022-03-27 16:52:11 +08:00
|
|
|
KeyLong int `mapstructure:"key-long" json:"key-long" yaml:"key-long"` // 验证码长度
|
|
|
|
ImgWidth int `mapstructure:"img-width" json:"img-width" yaml:"img-width"` // 验证码宽度
|
|
|
|
ImgHeight int `mapstructure:"img-height" json:"img-height" yaml:"img-height"` // 验证码高度
|
2020-10-06 11:30:50 +08:00
|
|
|
}
|