mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 20:52:33 +02:00
7 lines
140 B
Go
7 lines
140 B
Go
package http
|
|
|
|
import "net/http"
|
|
|
|
func IsSuccess(status int) bool {
|
|
return status >= http.StatusOK && status < http.StatusMultipleChoices
|
|
}
|