Files
opencloud/services/graph/pkg/unifiedrole/errors.go
2024-08-21 14:08:39 +02:00

11 lines
200 B
Go

package unifiedrole
import (
"errors"
)
var (
// ErrUnknownRole is returned when an unknown unified role is requested.
ErrUnknownRole = errors.New("unknown role, check if the role is enabled")
)