(url string, args interface{})
| 174 | } |
| 175 | |
| 176 | func ApiPostJson(url string, args interface{}) error { |
| 177 | return apiRequestJson(MethodPost, url, args, nil) |
| 178 | } |
| 179 | |
| 180 | func ApiResponseError(err error) (int, string) { |
| 181 | if err == nil { |
nothing calls this directly
no test coverage detected