mirror of
https://git.phreedom.club/localhost_frssoft/compy.git
synced 2024-11-06 00:13:20 +00:00
14 lines
222 B
Go
14 lines
222 B
Go
package transcoder
|
|
|
|
import (
|
|
"github.com/barnacs/compy/proxy"
|
|
"io"
|
|
)
|
|
|
|
type Identity struct{}
|
|
|
|
func (i *Identity) Transcode(w *proxy.ResponseWriter, r *proxy.ResponseReader) error {
|
|
_, err := io.Copy(w, r)
|
|
return err
|
|
}
|