GzipDecompressor handles gzip compression
| 61 | |
| 62 | // GzipDecompressor handles gzip compression |
| 63 | type GzipDecompressor struct{} |
| 64 | |
| 65 | // Decompress implements Decompressor interface for gzip |
| 66 | func (g *GzipDecompressor) Decompress(data []byte) ([]byte, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected