mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 02:59:00 -05:00
11 lines
200 B
Go
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")
|
|
)
|