mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
12 lines
254 B
Go
12 lines
254 B
Go
![]() |
package proxy
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
var (
|
||
|
nopReqModifier = func(req *http.Request) {}
|
||
|
nopResModifier = func(res *http.Response) error { return nil }
|
||
|
)
|
||
|
|
||
|
type RequestModifyFunc func(req *http.Request)
|
||
|
type ResponseModifyFunc func(res *http.Response) error
|