diff options
Diffstat (limited to 'spartan')
-rw-r--r-- | spartan/client.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spartan/client.go b/spartan/client.go index a98949d..9547f74 100644 --- a/spartan/client.go +++ b/spartan/client.go @@ -15,11 +15,12 @@ import ( // // It carries no state and is reusable simultaneously by multiple goroutines. // -// The zero value is immediately usabble. +// The zero value is immediately usabble, but will not follow redirects. type Client struct{ MaxRedirects int } +// NewClient creates a spartan Client which will follow DefaultMaxRedirects. func NewClient() Client { return Client{MaxRedirects: DefaultMaxRedirects} } |