(host string)
| 33 | } |
| 34 | |
| 35 | func NewFastClient(host string) *FastClient { |
| 36 | return &FastClient{client: &fasthttp.HostClient{Addr: host}} |
| 37 | } |
| 38 | |
| 39 | func (c *FastClient) Do(req *fasthttp.Request) (resp *fasthttp.Response, err error) { |
| 40 | resp = fasthttp.AcquireResponse() |
no outgoing calls
no test coverage detected