Adopted from: github.com/folbricht/routedns
| 19 | // Adopted from: github.com/folbricht/routedns |
| 20 | |
| 21 | type DohResolver interface { |
| 22 | DnsHandler() dns.HandlerFunc |
| 23 | DohHandler() http.HandlerFunc |
| 24 | } |
| 25 | |
| 26 | type dohstub struct { |
| 27 | url string |
no outgoing calls
no test coverage detected