package captcha
// GetCaptchaCode 返回固定验证码占位值。
// 教务系统验证码不再需要 AI 识别,登录时直接提交固定占位值 "...."。
func GetCaptchaCode() string {
return "...."
}