mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-14 18:02:55 +01:00
Refactor SMTPAuthType comment for clarity
Updated the comment for SMTPAuthType to more clearly explain its purpose as a type wrapper for SMTP authentication mechanisms. This improves code readability and helps future developers understand the type's function.
This commit is contained in:
parent
e8739b88b0
commit
ea90352ef4
1 changed files with 2 additions and 1 deletions
3
auth.go
3
auth.go
|
@ -6,7 +6,8 @@ package mail
|
|||
|
||||
import "errors"
|
||||
|
||||
// SMTPAuthType represents a string to any SMTP AUTH type
|
||||
// SMTPAuthType is a type wrapper for a string type. It represents the type of SMTP authentication
|
||||
// mechanism to be used.
|
||||
type SMTPAuthType string
|
||||
|
||||
const (
|
||||
|
|
Loading…
Reference in a new issue