Add Cloudron packaging for Maubot
This commit is contained in:
10
maubot-src/examples/helloworld/helloworld.py
Normal file
10
maubot-src/examples/helloworld/helloworld.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from mautrix.types import EventType
|
||||
from maubot import Plugin, MessageEvent
|
||||
from maubot.handlers import event
|
||||
|
||||
|
||||
class HelloWorldBot(Plugin):
|
||||
@event.on(EventType.ROOM_MESSAGE)
|
||||
async def handler(self, event: MessageEvent) -> None:
|
||||
if event.sender != self.client.mxid:
|
||||
await event.reply("Hello, World!")
|
||||
Reference in New Issue
Block a user