| 44 | var ErrBuildPath = errors.New("cannot build path, check for missing path parameters") |
| 45 | |
| 46 | type Start struct { |
| 47 | transport elastictransport.Interface |
| 48 | |
| 49 | headers http.Header |
| 50 | values url.Values |
| 51 | path url.URL |
| 52 | |
| 53 | raw io.Reader |
| 54 | |
| 55 | paramSet int |
| 56 | |
| 57 | spanStarted bool |
| 58 | |
| 59 | instrument elastictransport.Instrumentation |
| 60 | } |
| 61 | |
| 62 | // NewStart type alias for index. |
| 63 | type NewStart func() *Start |
nothing calls this directly
no outgoing calls
no test coverage detected