backend/pkg/library/errs/code/category.go

15 lines
194 B
Go
Raw Normal View History

2025-10-02 14:56:14 +00:00
package code
// Category for general operations: 10 - 490
const (
_ = iota
CatInput uint32 = iota * 10
CatDB
CatResource
CatGRPC
CatAuth
CatSystem
CatPubSub
CatService
)