(url string, args, reply interface{})
| 170 | } |
| 171 | |
| 172 | func ApiPutJson(url string, args, reply interface{}) error { |
| 173 | return apiRequestJson(MethodPut, url, args, reply) |
| 174 | } |
| 175 | |
| 176 | func ApiPostJson(url string, args interface{}) error { |
| 177 | return apiRequestJson(MethodPost, url, args, nil) |
nothing calls this directly
no test coverage detected