(self, to, result)
| 149 | |
| 150 | # Send response to client (to = message.id) |
| 151 | def response(self, to, result): |
| 152 | self.send({"cmd": "response", "to": to, "result": result}) |
| 153 | |
| 154 | # Send a command |
| 155 | def cmd(self, cmd, params={}, cb=None): |
no test coverage detected