Result represents a search result that was found.
| 6 | |
| 7 | // Result represents a search result that was found. |
| 8 | type Result struct { |
| 9 | Engine string |
| 10 | Title string |
| 11 | Description string |
| 12 | Link string |
| 13 | } |
| 14 | |
| 15 | // Searcher declares an interface used to leverage different |
| 16 | // search engines to find results. |
nothing calls this directly
no outgoing calls
no test coverage detected