mirror of
https://github.com/go-gost/core.git
synced 2024-08-11 17:44:43 +00:00
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
|
|
}
|