func getOperationResult()

in http/server/otelaudit/otelaudit_helper.go [193:198]


func getOperationResult(statusCode int) msgs.OperationResult {
	if statusCode >= 400 {
		return msgs.Failure
	}
	return msgs.Success
}