下载
Build docker and publish / build (20.15.1) (push) Has been cancelled

This commit is contained in:
2026-01-23 03:48:30 -08:00
parent cd0ef80d15
commit a98fcbfe73
19 changed files with 528 additions and 100 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"
}