(h string)
| 30 | } |
| 31 | |
| 32 | func isGarage(h string) bool { |
| 33 | return strings.EqualFold(h, "garage.github.com") |
| 34 | } |
| 35 | |
| 36 | func HostnameValidator(hostname string) error { |
| 37 | if len(strings.TrimSpace(hostname)) < 1 { |
no outgoing calls
no test coverage detected