mirror of
https://github.com/skyle1995/NetworkAuth.git
synced 2026-05-25 02:24:05 +08:00
11 lines
265 B
Go
11 lines
265 B
Go
package constants
|
|
|
|
// 验证码类型常量
|
|
// VerificationCodeType 定义验证码的类型
|
|
const (
|
|
// VerificationCodeTypeText 文本验证码
|
|
VerificationCodeTypeText = 1
|
|
// VerificationCodeTypeImage 图片验证码
|
|
VerificationCodeTypeImage = 2
|
|
)
|