authelia/internal/notification/notifier.go

7 lines
162 B
Go

package notification
// Notifier interface for sending the identity verification link.
type Notifier interface {
Send(recipient, subject, body string) error
}