bots: Refactor bots to use send_reply.
The send_reply function makes it easier for bots to send messages. This commit updates all bots to make use of this function, when possible.
This commit is contained in:
parent
f83ddd658c
commit
c6d294385f
9 changed files with 13 additions and 112 deletions
|
@ -13,12 +13,6 @@ class HelloWorldHandler(object):
|
|||
|
||||
def handle_message(self, message, client, state_handler):
|
||||
content = 'beep boop'
|
||||
|
||||
client.send_message(dict(
|
||||
type='stream',
|
||||
to=message['display_recipient'],
|
||||
subject=message['subject'],
|
||||
content=content,
|
||||
))
|
||||
client.send_reply(message, content)
|
||||
|
||||
handler_class = HelloWorldHandler
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue