16 lines
301 B
Go
16 lines
301 B
Go
|
package domain
|
||
|
|
||
|
import "backend/pkg/library/errs"
|
||
|
|
||
|
const (
|
||
|
FailedToGetByID errs.ErrorCode = iota + 1
|
||
|
FailedToGetByClientID
|
||
|
FailedToGetPermission
|
||
|
FailedToGetPermissionByKey
|
||
|
FailedToGetRoleByID
|
||
|
FailedToGetByUID
|
||
|
FailedToGetByClientAndName
|
||
|
FailedToGetByClientAndName
|
||
|
FailedToGetByClientAndName
|
||
|
)
|