library-go/errs/code/category.go

15 lines
194 B
Go
Raw Normal View History

2024-08-27 13:52:33 +00:00
package code
// Category for general operations: 10 - 490
const (
_ = iota
CatInput uint32 = iota * 10
CatDB
CatResource
CatGRPC
CatAuth
CatSystem
CatPubSub
CatService
)