Files
schedule_converter/captcha/recognize.go

8 lines
175 B
Go
Raw Normal View History

2026-03-13 20:43:44 +08:00
package captcha
// GetCaptchaCode 返回固定验证码
// 教务系统验证码已不再需要识别,直接使用固定值
func GetCaptchaCode() string {
return "...."
2026-03-13 20:43:44 +08:00
}