YiTao/service/email_service.go

8 lines
124 B
Go
Raw Normal View History

2024-11-09 14:59:27 +08:00
package service
type EmailService struct{}
func (e *EmailService) ValidateSignupEmail(email string) bool {
return true
}