This commit is contained in:
xiangheng
2024-08-16 14:40:08 +08:00
parent fe6ec94516
commit 4176d76157
18 changed files with 515 additions and 438 deletions

View File

@@ -26,12 +26,12 @@ func EncodeInt(value any) any {
case *string:
return *i
default:
return ""
return nil
}
// return val
}
}
return ""
return nil
}
func DecodeInt(value any) (any, error) {
switch v := value.(type) {