searchSession holds information about the current search submission. It contains options, searchers and a channel down which we will receive results.
| 22 | // It contains options, searchers and a channel down which we will receive |
| 23 | // results. |
| 24 | type searchSession struct { |
| 25 | searchers map[string]Searcher |
| 26 | first bool |
| 27 | resultChan chan []Result |
| 28 | } |
| 29 | |
| 30 | // Google search will be added to the search session if this option |
| 31 | // is provided. |
nothing calls this directly
no outgoing calls
no test coverage detected