Files

8 lines
213 B
Go
Raw Permalink Normal View History

2026-03-13 20:43:44 +08:00
package captcha
// GetCaptchaCode 返回固定验证码占位值。
// 教务系统验证码不再需要 AI 识别,登录时直接提交固定占位值 "...."。
func GetCaptchaCode() string {
return "...."
2026-03-13 20:43:44 +08:00
}