14 lines
397 B
Go
14 lines
397 B
Go
package authinfra
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInvalidConfig = errors.New("invalid config")
|
|
ErrUnknownAuthInfrastructureServiceType = errors.New("unknown auth infrastructure service type")
|
|
|
|
ErrBadRequest = errors.New("bad request")
|
|
ErrUnauthorized = errors.New("unauthorized")
|
|
ErrNotFound = errors.New("not found")
|
|
ErrInternal = errors.New("internal error")
|
|
)
|