1
0
mirror of https://github.com/mayflower/docker-ls.git synced 2025-04-19 13:02:17 +03:00
docker-ls/lib/auth/authenticator_interface.go
2016-02-17 11:43:45 +01:00

6 lines
117 B
Go

package auth
type Authenticator interface {
Authenticate(challenge *Challenge, ignoreCached bool) (Token, error)
}