7 lines
171 B
Go
7 lines
171 B
Go
|
package goidentity
|
||
|
|
||
|
type Authenticator interface {
|
||
|
Authenticate() (Identity, bool, error)
|
||
|
Mechanism() string // gives the name of the type of authentication mechanism
|
||
|
}
|