refactor(gofumpt): run gofumpt over the code

This commit is contained in:
Gusted 2021-08-03 20:38:53 +02:00 committed by Max Mazurov
parent 32b75262ad
commit b8d8ca6301
30 changed files with 52 additions and 61 deletions

View file

@ -20,12 +20,10 @@ package module
import "errors"
var (
// ErrUnknownCredentials should be returned by auth. provider if supplied
// credentials are valid for it but are not recognized (e.g. not found in
// used DB).
ErrUnknownCredentials = errors.New("unknown credentials")
)
// ErrUnknownCredentials should be returned by auth. provider if supplied
// credentials are valid for it but are not recognized (e.g. not found in
// used DB).
var ErrUnknownCredentials = errors.New("unknown credentials")
// PlainAuth is the interface implemented by modules providing authentication using
// username:password pairs.