-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmethod.go
84 lines (70 loc) · 1.51 KB
/
method.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package grequest
const (
MethodGet = "GET"
MethodHead = "HEAD"
MethodPost = "POST"
MethodPut = "PUT"
MethodPatch = "PATCH" // RFC 5789
MethodDelete = "DELETE"
MethodConnect = "CONNECT"
MethodOptions = "OPTIONS"
MethodTrace = "TRACE"
)
// Init get http method
func Get(u string) *HTTPClient {
return New().Get(u)
}
// Init Post http method
func Post(u string) *HTTPClient {
return New().Post(u)
}
// Init Put http method
func Put(u string) *HTTPClient {
return New().Put(u)
}
// Init Path http method
func Patch(u string) *HTTPClient {
return New().Patch(u)
}
// Init Delete http method
func Delete(u string) *HTTPClient {
return New().Delete(u)
}
// Init Head http method
func Head(u string) *HTTPClient {
return New().Head(u)
}
func (c *HTTPClient) SetMethod(method string) *HTTPClient {
c.request.method = method
return c
}
func (c *HTTPClient) Get(u string) *HTTPClient {
c.request.method = MethodGet
c.request.url = u
return c
}
func (c *HTTPClient) Post(u string) *HTTPClient {
c.request.method = MethodPost
c.request.url = u
return c
}
func (c *HTTPClient) Put(u string) *HTTPClient {
c.request.method = MethodPut
c.request.url = u
return c
}
func (c *HTTPClient) Patch(u string) *HTTPClient {
c.request.method = MethodPatch
c.request.url = u
return c
}
func (c *HTTPClient) Delete(u string) *HTTPClient {
c.request.method = MethodDelete
c.request.url = u
return c
}
func (c *HTTPClient) Head(u string) *HTTPClient {
c.request.method = MethodHead
c.request.url = u
return c
}