mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-06 21:04:39 +02:00
7 lines
224 B
Go
7 lines
224 B
Go
package identity
|
|
|
|
import "errors"
|
|
|
|
// ErrRevokeNotImplemented error type when Revoke method is not implemented
|
|
// by an identity provider
|
|
var ErrRevokeNotImplemented = errors.New("internal/identity: revoke not implemented")
|