mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
aed9099ce2
* refactor: factorize startup checks * refactor: address linting issues
12 lines
268 B
Go
12 lines
268 B
Go
package notification
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// Notifier interface for sending the identity verification link.
|
|
type Notifier interface {
|
|
Send(recipient, subject, body, htmlBody string) (err error)
|
|
StartupCheck(logger *logrus.Logger) (err error)
|
|
}
|