Files
cybertron-log-enricher/pkg/utils/response_utils.go
Varnit Goyal f20af81520 Tp 55555/integrate document service client (#5)
* TP-55555 | document client and kafka integration

* TP-55555 | introduce service concept refactor code
2024-07-27 17:00:47 +05:30

7 lines
161 B
Go

package utils
// IsErrorStatusCode checks if the status code is an error status code.
func IsErrorStatusCode(statusCode int) bool {
return statusCode >= 400
}