init registers the default matcher with the program.
()
| 5 | |
| 6 | // init registers the default matcher with the program. |
| 7 | func init() { |
| 8 | var matcher defaultMatcher |
| 9 | Register("default", matcher) |
| 10 | } |
| 11 | |
| 12 | // Search implements the behavior for the default matcher. |
| 13 | func (m defaultMatcher) Search(feed *Feed, searchTerm string) ([]*Result, error) { |
nothing calls this directly
no test coverage detected