mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
7 lines
207 B
Go
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
|
|
}
|