1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-06-29 09:50:56 +02:00

💚 Linting should not fail the CI

This commit is contained in:
Yohann D'ANELLO
2020-09-27 21:31:35 +02:00
parent 8b8b99c6ae
commit ac1e9fdc88
3 changed files with 4 additions and 3 deletions

View File

@ -37,7 +37,7 @@ func New(cfg *Options) (Backend, error) {
backend, err = ldap.New(&cfg.LDAP)
default:
// Package is misconfigured
backend, err = nil, errors.New("Authentification backend not found")
backend, err = nil, errors.New("authentification backend not found")
}
if err != nil {