DNSTestOutput represents the response of a DNS perf and DNS resolve output call.
| 119 | |
| 120 | // DNSTestOutput represents the response of a DNS perf and DNS resolve output call. |
| 121 | DNSTestOutput struct { |
| 122 | ID string `json:"id,omitempty"` |
| 123 | Requested string `json:"requested,omitempty"` |
| 124 | Finished bool `json:"finished"` |
| 125 | Items []*DNSTestItem `json:"items,omitempty"` |
| 126 | } |
| 127 | |
| 128 | // CurlRequest represents the parameters for a curl request. |
| 129 | CurlRequest struct { |
nothing calls this directly
no outgoing calls
no test coverage detected