diff --git a/morpheus/core/client.py b/morpheus/core/client.py index a1143a2..83f4618 100644 --- a/morpheus/core/client.py +++ b/morpheus/core/client.py @@ -173,3 +173,11 @@ class Client: content['formatted_body'] = formatted_body await self.send_room_message(room=room, content=content) + + # TODO send_emote + # TODO send_notice + # TODO send_image + # TODO send_file + # TODO send_audio + # TODO send_location + # TODO send_video diff --git a/morpheus/core/room.py b/morpheus/core/room.py index 30d5f3b..f158bdd 100644 --- a/morpheus/core/room.py +++ b/morpheus/core/room.py @@ -93,5 +93,13 @@ class Room: async def send_text(self, body: str, formatted_body: str = None, format_type: str = 'org.matrix.custom.html'): await self.client.send_text(self, body, formatted_body, format_type) + # TODO send_emote + # TODO send_notice + # TODO send_image + # TODO send_file + # TODO send_audio + # TODO send_location + # TODO send_video + def __eq__(self, other): return other.__class__ == self.__class__ and other.id == self.id