(self, msg)
| 6 | |
| 7 | class MyWXBot(WXBot): |
| 8 | def handle_msg_all(self, msg): |
| 9 | if msg['msg_type_id'] == 4 and msg['content']['type'] == 0: |
| 10 | self.send_msg_by_uid('hi', msg['user']['id']) |
| 11 | |
| 12 | |
| 13 | ''' |
nothing calls this directly
no test coverage detected