2015-03-28 22:07:40 +00:00
|
|
|
package transcoder
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/barnacs/compy/proxy"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Identity struct{}
|
|
|
|
|
|
|
|
func (i *Identity) Transcode(w *proxy.ResponseWriter, r *proxy.ResponseReader) error {
|
2015-03-29 14:09:48 +00:00
|
|
|
return w.ReadFrom(r)
|
2015-03-28 22:07:40 +00:00
|
|
|
}
|