mirror of
https://git.phreedom.club/localhost_frssoft/compy.git
synced 2024-11-20 15:19:17 +00:00
9bf55d29a9
fixes redirects
12 lines
201 B
Go
12 lines
201 B
Go
package transcoder
|
|
|
|
import (
|
|
"github.com/barnacs/compy/proxy"
|
|
)
|
|
|
|
type Identity struct{}
|
|
|
|
func (i *Identity) Transcode(w *proxy.ResponseWriter, r *proxy.ResponseReader) error {
|
|
return w.ReadFrom(r)
|
|
}
|