| 167 | } |
| 168 | |
| 169 | type HTTPToolConfig struct { |
| 170 | Method string |
| 171 | URL string |
| 172 | Headers map[string]string |
| 173 | Body string |
| 174 | RawBody []byte |
| 175 | Timeout time.Duration |
| 176 | } |
| 177 | |
| 178 | func NewHTTPExecutor(allowedDomains []string) *HTTPExecutor { |
| 179 | if allowedDomains == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected