mirror of
https://git.phreedom.club/localhost_frssoft/compy.git
synced 2024-11-06 00:13:20 +00:00
11a40b5051
This avoids sending compressed data to clients which do not support it.
13 lines
234 B
Go
13 lines
234 B
Go
package transcoder
|
|
|
|
import (
|
|
"github.com/barnacs/compy/proxy"
|
|
"net/http"
|
|
)
|
|
|
|
type Identity struct{}
|
|
|
|
func (i *Identity) Transcode(w *proxy.ResponseWriter, r *proxy.ResponseReader, headers http.Header) error {
|
|
return w.ReadFrom(r)
|
|
}
|