18 lines
234 B
Go
18 lines
234 B
Go
|
package h2mux
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
func CompressionIsSupported() bool {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func newDecompressor(src io.Reader) decompressor {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func newCompressor(dst io.Writer, quality, lgwin int) compressor {
|
||
|
return nil
|
||
|
}
|