package benefactorvalidator
const (
phoneNumberRegex = "^09\\d{9}$"
)
type Validator struct{}
func New() Validator {
return Validator{}
}