RunOutput represents the response of an MTR or ping output call.
| 69 | |
| 70 | // RunOutput represents the response of an MTR or ping output call. |
| 71 | RunOutput struct { |
| 72 | ID string `json:"id,omitempty"` |
| 73 | Requested string `json:"requested,omitempty"` |
| 74 | Finished bool `json:"finished"` |
| 75 | Items []*RunItem `json:"items,omitempty"` |
| 76 | } |
| 77 | |
| 78 | // RunTiming represents the test timings. |
| 79 | RunTiming struct { |
nothing calls this directly
no outgoing calls
no test coverage detected