mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
55685dfd6e
Also switch to yaml plugin metadata in example file (ref #33)
15 lines
483 B
Python
15 lines
483 B
Python
from maubot import Plugin, MessageEvent
|
|
from mautrix.types import EventType
|
|
|
|
|
|
class HelloWorldBot(Plugin):
|
|
async def start(self) -> None:
|
|
self.client.add_event_handler(self.handler, EventType.ROOM_MESSAGE)
|
|
|
|
async def stop(self) -> None:
|
|
self.client.remove_event_handler(self.handler, EventType.ROOM_MESSAGE)
|
|
|
|
async def handler(self, event: MessageEvent) -> None:
|
|
if event.sender != self.client.mxid:
|
|
await event.reply("Hello, World!")
|