update code

This commit is contained in:
daniel.w 2024-11-13 12:03:14 +08:00
parent 7b6ec04405
commit f578e82046
1 changed files with 7 additions and 0 deletions

7
errs/error_code.go Normal file
View File

@ -0,0 +1,7 @@
package errs
type ErrorCode uint32
func (e ErrorCode) ToUint32() uint32 {
return uint32(e)
}