(method string, path string)
| 99 | } |
| 100 | |
| 101 | func newAPIRequest(method string, path string) *request { |
| 102 | return &request{ |
| 103 | method: method, |
| 104 | path: path, |
| 105 | params: make(map[string]string), |
| 106 | header: make(map[string]string), |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | type RespBody struct{} |
| 111 |
no outgoing calls
no test coverage detected