Result represents a single result
| 10 | |
| 11 | // Result represents a single result |
| 12 | type Result struct { |
| 13 | Found bool |
| 14 | BucketName string |
| 15 | Status string |
| 16 | } |
| 17 | |
| 18 | // ResultToString converts the Result to its textual representation |
| 19 | func (r Result) ResultToString() (string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected