8 lines
124 B
Go
8 lines
124 B
Go
|
package service
|
||
|
|
||
|
type EmailService struct{}
|
||
|
|
||
|
func (e *EmailService) ValidateSignupEmail(email string) bool {
|
||
|
return true
|
||
|
}
|