The HttpExecutor implements the Executor interface and constructs HTTP request from the given command line parameters and configurations.
| 33 | // The HttpExecutor implements the Executor interface and constructs HTTP request |
| 34 | // from the given command line parameters and configurations. |
| 35 | type HttpExecutor struct { |
| 36 | authenticators []auth.Authenticator |
| 37 | } |
| 38 | |
| 39 | func (e HttpExecutor) addHeaders(header http.Header, headerParameters []ExecutionParameter) { |
| 40 | converter := converter.NewStringConverter() |
nothing calls this directly
no outgoing calls
no test coverage detected