| 17 | } |
| 18 | |
| 19 | type extensionWorkers struct { |
| 20 | name string |
| 21 | fileName string |
| 22 | num int |
| 23 | options []WorkerOption |
| 24 | internalWorker *worker |
| 25 | } |
| 26 | |
| 27 | // EXPERIMENTAL: SendRequest sends an HTTP request to the worker and writes the response to the provided ResponseWriter. |
| 28 | func (w *extensionWorkers) SendRequest(rw http.ResponseWriter, r *http.Request) error { |
nothing calls this directly
no outgoing calls
no test coverage detected