Skip to content

Instantly share code, notes, and snippets.

@MKtalk
Created November 9, 2018 02:26
Show Gist options
  • Save MKtalk/cf6fe4cdb2c3222522d21295f638fbbe to your computer and use it in GitHub Desktop.
Save MKtalk/cf6fe4cdb2c3222522d21295f638fbbe to your computer and use it in GitHub Desktop.
new bot.py
from bothub_client.bot import BaseBot
from bothub_client.decorators import channel
class Bot(BaseBot):
@channel()
def default_handler(self, event, context):
self.send_message('Echo: {}'.format(event['content']))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment