Files
EdgeNode/internal/waf/requests/response.go
刘祥超 04b9a65d4d 实现WAF
2020-10-08 15:06:42 +08:00

16 lines
189 B
Go

package requests
import "net/http"
type Response struct {
*http.Response
BodyData []byte
}
func NewResponse(resp *http.Response) *Response {
return &Response{
Response: resp,
}
}