Forgot the mail package
This commit is contained in:
parent
fcbab29d06
commit
0948e95932
1 changed files with 15 additions and 0 deletions
15
mail/mail.go
Normal file
15
mail/mail.go
Normal 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
|
||||
}
|
Loading…
Reference in a new issue