10 lines
No EOL
148 B
Python
10 lines
No EOL
148 B
Python
from bot import LXMFBot
|
|
from pprint import pprint
|
|
|
|
bot = LXMFBot("Randobot")
|
|
|
|
@bot.received
|
|
def echo_msg(msg):
|
|
msg.reply(msg.content)
|
|
|
|
bot.run() |