mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-29 05:42:11 +02:00
8 lines
140 B
Go
8 lines
140 B
Go
package http
|
|
|
|
import "net/http"
|
|
|
|
func IsSuccess(status int) bool {
|
|
return status >= http.StatusOK && status < http.StatusMultipleChoices
|
|
}
|