Files
easywish/backend/internal/errors/smtp.go
Nikolai Papin 63b63038d1 feat: initialized smtp service;
refactor: config now returns a copy of a struct to prevent editing;
chore: corrected identation
2025-07-08 23:21:00 +03:00

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")
)