9 lines
No EOL
125 B
Python
9 lines
No EOL
125 B
Python
from lxmfbot import LXMFBot
|
|
|
|
bot = LXMFBot("testbot")
|
|
|
|
@bot.received
|
|
def echo_msg(msg):
|
|
msg.reply(msg.content)
|
|
|
|
bot.run() |