2023-04-19 06:11:28 +00:00
|
|
|
from nio.events.room_events import RoomMessageText
|
|
|
|
from nio.rooms import MatrixRoom
|
|
|
|
|
2023-04-23 13:26:46 +00:00
|
|
|
|
2023-04-28 10:01:27 +00:00
|
|
|
async def command_unknown(room: MatrixRoom, event: RoomMessageText, bot):
|
2023-04-25 11:25:53 +00:00
|
|
|
bot.logger.log("Unknown command")
|
2023-04-19 06:11:28 +00:00
|
|
|
|
2023-04-28 10:01:27 +00:00
|
|
|
await bot.send_message(room, "Unknown command - try !gptbot help", True)
|