Document relation between module namespaces and interfaces

This commit is contained in:
fox.cpp 2020-07-14 22:43:51 +03:00
parent 1ee501ba99
commit 623c0d8a04
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
6 changed files with 16 additions and 0 deletions

View file

@ -11,6 +11,8 @@ var (
// PlainAuth is the interface implemented by modules providing authentication using
// username:password pairs.
//
// Modules implementing this interface should be registered with "auth." prefix in name.
type PlainAuth interface {
AuthPlain(username, password string) error
}