mailer.go 106 B

12345
  1. package interfaces
  2. type IMailer interface {
  3. Send(recipient string, subject string, text string) error
  4. }