mirror of
https://github.com/parkan/go-hauk.git
synced 2026-05-08 16:47:46 +02:00
10 lines
160 B
Go
10 lines
160 B
Go
package auth
|
|
|
|
import "errors"
|
|
|
|
var ErrAuthFailed = errors.New("authentication failed")
|
|
|
|
type Authenticator interface {
|
|
Authenticate(user, pass string) error
|
|
}
|