| 308 | } |
| 309 | |
| 310 | type doResult struct { |
| 311 | Response *http.Response |
| 312 | Error error |
| 313 | } |
| 314 | |
| 315 | func (x *XHRSession) do(req *http.Request) <-chan doResult { |
| 316 | ch := make(chan doResult, 1) |
nothing calls this directly
no outgoing calls
no test coverage detected