derived classes must implement this function
(
self, text: str,
reply_to: Union[Contact, List[Contact]]
)
| 42 | wechaty sayable interface |
| 43 | """ |
| 44 | async def say( |
| 45 | self, text: str, |
| 46 | reply_to: Union[Contact, List[Contact]] |
| 47 | ) -> Optional[Message]: |
| 48 | """ |
| 49 | derived classes must implement this function |
| 50 | """ |
| 51 | raise NotImplementedError |
| 52 | |
| 53 | |
| 54 | # pylint: disable=R0903 |
no outgoing calls
no test coverage detected