func()

in reference-api/unified_handler.go [38:44]


func (rec *responseRecorder) Write(p []byte) (int, error) {
	if rec.statusCode == 0 { // Default to 200 if WriteHeader was never called
		rec.statusCode = http.StatusOK
	}
	rec.body.Write(p)
	return rec.ResponseWriter.Write(p)
}