spray/pkg/requests.go
2022-09-08 15:57:17 +08:00

16 lines
238 B
Go

package pkg
import (
"net/http"
)
func BuildPathRequest(path string, req http.Request) *http.Request {
req.URL.Path = path
return &req
}
func BuildHostRequest(u string, req http.Request) *http.Request {
req.Host = u
return &req
}