mirror of https://github.com/zulip/zulip.git
19 lines
537 B
Python
19 lines
537 B
Python
# See readme.md for instructions on running this code.
|
|
|
|
|
|
class HelloWorldHandler(object):
|
|
def usage(self):
|
|
return '''
|
|
This is a boilerplate bot that responds to a user query with
|
|
"beep boop", which is robot for "Hello World".
|
|
|
|
This bot can be used as a template for other, more
|
|
sophisticated, bots.
|
|
'''
|
|
|
|
def handle_message(self, message, bot_handler, state_handler):
|
|
content = 'beep boop'
|
|
bot_handler.send_reply(message, content)
|
|
|
|
handler_class = HelloWorldHandler
|