6 lines
89 B
Go

package mail
type MailServiceInterface interface {
SendMail(to []string, msg []byte)
}