mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-07 22:36:05 +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")
|