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

16 lines
204 B
Go
Raw Permalink 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
2025-10-06 08:28:39 +00:00
CatToken
2025-10-02 14:56:14 +00:00
)