refactor: config now returns a copy of a struct to prevent editing; chore: corrected identation
11 lines
170 B
Go
11 lines
170 B
Go
package errors
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrSmtpDisabled = errors.New("Smtp is not enabled in the config")
|
|
ErrSmtpSendFailure = errors.New("Failed to send email")
|
|
)
|