------------------------------------------------------------------- reader reads an S3 object. It implements io.ReadCloser.
| 300 | |
| 301 | // reader reads an S3 object. It implements io.ReadCloser. |
| 302 | type reader struct { |
| 303 | attrs *blob.ReaderAttributes |
| 304 | body io.ReadCloser |
| 305 | } |
| 306 | |
| 307 | // Read implements [io/ReadCloser.Read]. |
| 308 | func (r *reader) Read(p []byte) (int, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected