(command, data )
| 31 | return None |
| 32 | |
| 33 | def apicall(command, data ): |
| 34 | response, error = make_request(command, data, None, host, port, apikey, secretkey, protocol, path) |
| 35 | if error is not None: |
| 36 | return error, get_error_code(error) |
| 37 | return response |
no test coverage detected