(feed *Feed, searchTerm string)
| 14 | // to implement a new search type. |
| 15 | type Matcher interface { |
| 16 | Search(feed *Feed, searchTerm string) ([]*Result, error) |
| 17 | } |
| 18 | |
| 19 | // Match is launched as a goroutine for each individual feed to run |
no outgoing calls
no test coverage detected