func()

in fc/http_handler_response.go [40:45]


func (r *fcResponse) Write(p []byte) (n int, err error) {
	if !r.wroteHeader {
		r.WriteHeader(http.StatusOK)
	}
	return r.body.Write(p)
}