Kumi
202bed25c6
Replace bunch of globals with single dictionary Move commands to subdirectory Add coin toss command (because) Add command to ignore previous messages in a room as context
10 lines
No EOL
406 B
Python
10 lines
No EOL
406 B
Python
from nio.events.room_events import RoomMessageText
|
|
from nio.rooms import MatrixRoom
|
|
|
|
async def command_unknown(room: MatrixRoom, event: RoomMessageText, context: dict):
|
|
context["logger"]("Unknown command")
|
|
|
|
await context["client"].room_send(
|
|
room.room_id, "m.room.message", {"msgtype": "m.notice",
|
|
"body": "Unknown command - try !gptbot help"}
|
|
) |