mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
10 lines
307 B
Go
10 lines
307 B
Go
package serviceaccounts
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrServiceAccountNotFound = errors.New("service account not found")
|
|
ErrServiceAccountInvalidRole = errors.New("invalid role specified")
|
|
ErrServiceAccountRolePrivilegeDenied = errors.New("can not assign a role higher than user's role")
|
|
)
|