func newFcResponse()

in fc/http_handler_response.go [27:34]


func newFcResponse(req *http.Request) *fcResponse {
	return &fcResponse{
		req:           req,
		contentLength: -1,
		header:        http.Header{},
		body:          bytes.Buffer{},
	}
}