package permissions import "errors" var ( ErrRoleNotFound = errors.New("role not found") ErrAssignmentFailed = errors.New("assignment failed") )