github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/pkg/httputil/response.go (about) 1 package httputil 2 3 import "net/http" 4 5 // IsSuccessStatusCode returns true for status code 2xx 6 func IsSuccessStatusCode(response *http.Response) bool { 7 return response.StatusCode >= http.StatusOK && response.StatusCode < http.StatusMultipleChoices 8 }