GzipWriter implements the functions needed for compressing content.
| 10 | |
| 11 | // GzipWriter implements the functions needed for compressing content. |
| 12 | type GzipWriter interface { |
| 13 | Write(p []byte) (int, error) |
| 14 | Close() error |
| 15 | Flush() error |
| 16 | } |
| 17 | |
| 18 | // GzipWriterExt implements the functions needed for compressing content |
| 19 | // and optional extensions. |
no outgoing calls
no test coverage detected
searching dependent graphs…