10 lines
		
	
	
		
			764 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			764 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package config
 | |
| 
 | |
| type Captcha struct {
 | |
| 	OpenCaptcha        int    `mapstructure:"open_captcha" json:"open_captcha" yaml:"open_captcha"`                         // 是否开启防爆次数
 | |
| 	OpenCaptchaTimeout string `mapstructure:"open_captcha_timeout" json:"open_captcha_timeout" yaml:"open_captcha_timeout"` // 缓存超时时间
 | |
| 	ImgWidth           int    `mapstructure:"img_width" json:"img_width" yaml:"img_width"`                                  // 验证码图片宽度
 | |
| 	ImgHeight          int    `mapstructure:"img_height" json:"img_height" yaml:"img_height"`                               // 验证码图片高度
 | |
| 	KeyLong            int    `mapstructure:"key_long" json:"key_long" yaml:"key_long"`                                     // 验证码长度
 | |
| }
 |