Forgot the mail package

This commit is contained in:
Daniel Krol 2022-07-29 09:42:12 -04:00
parent fcbab29d06
commit 0948e95932

15
mail/mail.go Normal file
View file

@ -0,0 +1,15 @@
package mail
import (
"lbryio/lbry-id/auth"
)
type MailInterface interface {
SendVerificationEmail(email auth.Email, token auth.VerifyTokenString) error
}
type Mail struct{}
func (m *Mail) SendVerificationEmail(auth.Email, auth.VerifyTokenString) (err error) {
return
}