同步历史版本代码

This commit is contained in:
2026-03-03 09:32:22 -08:00
parent 7d46b31866
commit 4d8516b2e1
140 changed files with 8399 additions and 489 deletions
+4
View File
@@ -15,6 +15,8 @@ type VerifyType uint8
const (
Register VerifyType = iota + 1
Security
_
DeleteAccount
)
func ParseVerifyType(i uint8) VerifyType {
@@ -27,6 +29,8 @@ func (v VerifyType) String() string {
return "register"
case Security:
return "security"
case DeleteAccount:
return "delete_account"
default:
return "unknown"
}