Files
kapow/internal/http/reason.go
Roberto Abdelkader Martínez Pérez 681ee3cba8 http becomes an internal package
2019-10-03 14:12:14 +02:00

15 lines
195 B
Go

package http
import (
"net/http"
"strings"
)
func GetReason(r *http.Response) string {
if i := strings.IndexByte(r.Status, ' '); i != -1 {
return r.Status[i+1:]
} else {
return ""
}
}