Result represents a single result
| 15 | |
| 16 | // Result represents a single result |
| 17 | type Result struct { |
| 18 | Word string |
| 19 | Path string |
| 20 | StatusCode int |
| 21 | Size int64 |
| 22 | Header http.Header |
| 23 | } |
| 24 | |
| 25 | // ResultToString converts the Result to its textual representation |
| 26 | func (r Result) ResultToString() (string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected