William Petit
e2dc3e1a03
All checks were successful
Cadoles/go-proxy/pipeline/head This commit looks good
12 lines
196 B
Go
12 lines
196 B
Go
package proxy
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type (
|
|
Middleware func(h http.Handler) http.Handler
|
|
RequestTransformer func(r *http.Request)
|
|
ResponseTransformer func(r *http.Response) error
|
|
)
|