Files
QSfera/Server/services/graph/pkg/unifiedrole/errors.go
T
Курнат Андрей 2315f25754 Initial QSfera import
2026-06-07 10:20:04 +03: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")
)