maddy/module/auth.go
2019-03-30 17:34:19 +02:00

7 lines
207 B
Go

package module
// AuthProvider is the interface implemented by modules providing authentication using
// username:password pairs.
type AuthProvider interface {
CheckPlain(username, password string) bool
}