mirror of
https://github.com/1f349/orchid.git
synced 2024-11-09 14:52:58 +00:00
17 lines
271 B
Go
17 lines
271 B
Go
package utils
|
|
|
|
import "github.com/MrMelon54/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
|
|
}
|