SetURL set URL
(path string)
| 61 | |
| 62 | // SetURL set URL |
| 63 | func (req *Request) SetURL(path string) *Request { |
| 64 | req.url = path |
| 65 | return req |
| 66 | } |
| 67 | |
| 68 | // SetParams parameters after setting the URL |
| 69 | func (req *Request) SetParams(params map[string]interface{}) *Request { |
no outgoing calls