mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-03 20:36:03 +02:00
8 lines
370 B
Go
8 lines
370 B
Go
// Package directoryerrors contains errors used by directory providers.
|
|
package directoryerrors
|
|
|
|
import "errors"
|
|
|
|
// ErrPreferExistingInformation indicates that the information returned by the provider should
|
|
// only be used if a record is brand new, otherwise the existing information should be kept as is.
|
|
var ErrPreferExistingInformation = errors.New("user ignored")
|