-
Notifications
You must be signed in to change notification settings - Fork 26
/
types.go
66 lines (54 loc) · 1.25 KB
/
types.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
package httpbin
type ipResponse struct {
Origin string `json:"origin"`
}
type errorResponse struct {
Error errObj `json:"error"`
}
type errObj struct {
Message string `json:"message"`
}
type userAgentResponse struct {
UA string `json:"user-agent"`
}
type headersResponse struct {
Headers map[string]string `json:"headers"`
}
type cookiesResponse struct {
Cookies map[string]string `json:"cookies"`
}
type getResponse struct {
headersResponse
ipResponse
URL string `json:"url"`
Args map[string]interface{} `json:"args"`
}
type postResponse struct {
headersResponse
ipResponse
URL string `json:"url"`
Args map[string]interface{} `json:"args"`
Data string `json:"data"`
Files map[string]string `json:"files"`
Form map[string]interface{} `json:"form"`
JSON interface{} `json:"json"`
}
type gzipResponse struct {
headersResponse
ipResponse
Gzipped bool `json:"gzipped"`
}
type deflateResponse struct {
headersResponse
ipResponse
Deflated bool `json:"deflated"`
}
type brotliResponse struct {
headersResponse
ipResponse
Compressed bool `json:"compressed"`
}
type basicAuthResponse struct {
Authenticated bool `json:"authenticated"`
User string `json:"user"`
}