custom.py 270 B

123456789
  1. from nio.events.room_events import RoomMessageText
  2. from nio.rooms import MatrixRoom
  3. async def command_custom(room: MatrixRoom, event: RoomMessageText, bot):
  4. bot.logger.log("Forwarding custom command to room...")
  5. await bot.process_query(room, event)
  6. return