Post returns *Request with POST method.
(url string)
| 72 | |
| 73 | // Post returns *Request with POST method. |
| 74 | func Post(url string) *Request { |
| 75 | return newRequest(url, "POST") |
| 76 | } |
| 77 | |
| 78 | // Put returns *Request with PUT method. |
| 79 | func Put(url string) *Request { |