mirror of
https://github.com/wneessen/go-mail.git
synced 2024-12-18 17:00:38 +01:00
Refactor: consolidate ErrNonTLSConnection variable
The variable ErrNonTLSConnection has been simplified from a multi-line declaration to a single-line declaration. This increases code readability and maintains consistency with Go conventions.
This commit is contained in:
parent
15b9ddf067
commit
f823112a4d
1 changed files with 1 additions and 3 deletions
|
@ -36,9 +36,7 @@ import (
|
||||||
"github.com/wneessen/go-mail/log"
|
"github.com/wneessen/go-mail/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var ErrNonTLSConnection = errors.New("connection is not using TLS")
|
||||||
ErrNonTLSConnection = errors.New("connection is not using TLS")
|
|
||||||
)
|
|
||||||
|
|
||||||
// A Client represents a client connection to an SMTP server.
|
// A Client represents a client connection to an SMTP server.
|
||||||
type Client struct {
|
type Client struct {
|
||||||
|
|
Loading…
Reference in a new issue