mirror of
https://github.com/mayflower/docker-ls.git
synced 2025-04-19 13:02:17 +03:00
6 lines
117 B
Go
6 lines
117 B
Go
package auth
|
|
|
|
type Authenticator interface {
|
|
Authenticate(challenge *Challenge, ignoreCached bool) (Token, error)
|
|
}
|