Files
gost-core/auth/auth.go
T

7 lines
147 B
Go

package auth
// Authenticator is an interface for user authentication.
type Authenticator interface {
Authenticate(user, password string) bool
}