lxmf-bot/randobot.py
randogoth 21c7f71971 init
2023-05-19 02:18:16 +03:00

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()