| 45 | func ptrString(v string) *string { return &v } |
| 46 | |
| 47 | type stubRedirectClient struct { |
| 48 | calls []stubRedirectCall |
| 49 | callCount int |
| 50 | } |
| 51 | |
| 52 | func (s *stubRedirectClient) Do(req *fasthttp.Request, resp *fasthttp.Response) error { |
| 53 | _ = req |
nothing calls this directly
no outgoing calls
no test coverage detected