54b18b3c59
Update module lib/pq to v1.6.0 Reviewed-on: https://kolaente.dev/vikunja/api/pulls/572
6 lines
171 B
Go
6 lines
171 B
Go
package goidentity
|
|
|
|
type Authenticator interface {
|
|
Authenticate() (Identity, bool, error)
|
|
Mechanism() string // gives the name of the type of authentication mechanism
|
|
}
|