core/auth/auth.go
2022-04-04 11:30:31 +08:00

7 lines
147 B
Go

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