(searchTerm string, searchResults chan<- []Result)
| 16 | // search engines to find results. |
| 17 | type Searcher interface { |
| 18 | Search(searchTerm string, searchResults chan<- []Result) |
| 19 | } |
| 20 | |
| 21 | // searchSession holds information about the current search submission. |
no outgoing calls
no test coverage detected