20 lines
231 B
Go
Raw Normal View History

2024-10-14 13:49:16 +08:00
package errcode
const (
ErrGeneral = (iota + 1) * 100000
ErrAnimal
2024-10-17 14:49:50 +08:00
ErrUser
2024-11-02 11:49:49 +08:00
ErrEncounter
2024-11-06 09:16:18 +08:00
ErrNlp
2024-11-13 20:04:08 +08:00
ErrKnowledge
2024-11-16 02:38:34 +08:00
ErrSubService
2024-10-14 13:49:16 +08:00
)
const (
ErrGeneralStart = ErrGeneral + iota
ErrInvalidData
ErrInternalError
2024-10-20 21:01:12 +08:00
ErrDataNoFound
2024-10-14 13:49:16 +08:00
)