mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
9 lines
222 B
Go
9 lines
222 B
Go
package accesscontrol
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrFixedRolePrefixMissing = errors.New("fixed role should be prefixed with '" + FixedRolePrefix + "'")
|
|
ErrInvalidBuiltinRole = errors.New("built-in role is not valid")
|
|
)
|