WithHuman makes statistical values human-readable.
()
| 333 | |
| 334 | // WithHuman makes statistical values human-readable. |
| 335 | func (f Get) WithHuman() func(*GetRequest) { |
| 336 | return func(r *GetRequest) { |
| 337 | r.Human = true |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | // WithErrorTrace includes the stack trace for errors in the response body. |
| 342 | func (f Get) WithErrorTrace() func(*GetRequest) { |