Files
NetworkAuth/constants/status.go

11 lines
265 B
Go
Raw Normal View History

2025-10-24 00:09:45 +08:00
package constants
// 验证码类型常量
// VerificationCodeType 定义验证码的类型
const (
// VerificationCodeTypeText 文本验证码
VerificationCodeTypeText = 1
// VerificationCodeTypeImage 图片验证码
VerificationCodeTypeImage = 2
)