18 lines
334 B
Python
18 lines
334 B
Python
from xbotlib import Bot
|
|
|
|
|
|
class EchoBot(Bot):
|
|
"""Gives back what you sent it.
|
|
|
|
Just direct message the bot and see if you get back what you sent.
|
|
|
|
"""
|
|
|
|
def react(self, message):
|
|
"""Send back what we get."""
|
|
if message.type == "chat":
|
|
self.reply(message.body, to=message.sender)
|
|
|
|
|
|
EchoBot()
|