MCPcopy Index your code
hub / github.com/imroc/req / ZstdReader

Struct ZstdReader

internal/compress/zstd_reader.go:9–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7)
8
9type ZstdReader struct {
10 Body io.ReadCloser // underlying Response.Body
11 zr *zstd.Decoder // lazily-initialized zstd reader
12 zerr error // sticky error
13}
14
15func NewZstdReader(body io.ReadCloser) *ZstdReader {
16 return &ZstdReader{Body: body}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected