mirror of
https://github.com/yusing/godoxy.git
synced 2026-02-22 18:37:46 +01: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
|
|
}
|