mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-13 06:48:23 +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")
|