7 lines
147 B
Go
7 lines
147 B
Go
package auth
|
|
|
|
// Authenticator is an interface for user authentication.
|
|
type Authenticator interface {
|
|
Authenticate(user, password string) bool
|
|
}
|