| 327 | } |
| 328 | |
| 329 | type s3Writer struct { |
| 330 | pwriter *io.PipeWriter |
| 331 | preader *io.PipeReader |
| 332 | bucketName string |
| 333 | cerr chan error |
| 334 | } |
| 335 | |
| 336 | func (sw *s3Writer) Write(p []byte) (n int, err error) { return sw.pwriter.Write(p) } |
| 337 | func (sw *s3Writer) Close() error { |
nothing calls this directly
no outgoing calls
no test coverage detected