This commit is contained in:
randogoth 2023-05-19 11:05:53 +03:00
parent 21c7f71971
commit edd44564d2
5 changed files with 42 additions and 10 deletions

9
example.py Normal file
View file

@ -0,0 +1,9 @@
from lxmfbot import LXMFBot
bot = LXMFBot("NodeBot")
@bot.received
def echo_msg(msg):
msg.reply(msg.content)
bot.run()