(url string, reply interface{})
| 166 | } |
| 167 | |
| 168 | func ApiGetJson(url string, reply interface{}) error { |
| 169 | return apiRequestJson(MethodGet, url, nil, reply) |
| 170 | } |
| 171 | |
| 172 | func ApiPutJson(url string, args, reply interface{}) error { |
| 173 | return apiRequestJson(MethodPut, url, args, reply) |
nothing calls this directly
no test coverage detected