(body io.ReadCloser)
| 13 | } |
| 14 | |
| 15 | func NewZstdReader(body io.ReadCloser) *ZstdReader { |
| 16 | return &ZstdReader{Body: body} |
| 17 | } |
| 18 | |
| 19 | func (zr *ZstdReader) Read(p []byte) (n int, err error) { |
| 20 | if zr.zerr != nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…