13 lines
154 B
Go
Raw Normal View History

2024-10-14 13:49:16 +08:00
package errcode
const (
ErrGeneral = (iota + 1) * 100000
ErrAnimal
)
const (
ErrGeneralStart = ErrGeneral + iota
ErrInvalidData
ErrInternalError
)