orchid/utils/domain-checker.go
2023-07-22 01:39:39 +01:00

17 lines
267 B
Go

package utils
import "github.com/1f349/violet/utils"
type DomainChecker []string
func (d DomainChecker) ValidateDomain(a string) bool {
if fqdn, ok := utils.GetTopFqdn(a); ok {
for _, i := range d {
if i == fqdn {
return true
}
}
}
return false
}