diff options
| author | 2023-04-19 01:23:44 +0800 | |
|---|---|---|
| committer | 2023-04-19 01:23:44 +0800 | |
| commit | 23b32b900423ae8fe36a50224f0308cb3d97d4d0 (patch) | |
| tree | b5a59158f31d7aed0e3d65b0cb1563e7e5ff7edc /plugins/alicebot_plugin_send/__init__.py | |
| parent | a69a07edfedf5e15d8013fb639ed6574e0078988 (diff) | |
| download | HydroRoll-23b32b900423ae8fe36a50224f0308cb3d97d4d0.tar.gz HydroRoll-23b32b900423ae8fe36a50224f0308cb3d97d4d0.zip | |
🏷bump
Diffstat (limited to 'plugins/alicebot_plugin_send/__init__.py')
| -rw-r--r-- | plugins/alicebot_plugin_send/__init__.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/alicebot_plugin_send/__init__.py b/plugins/alicebot_plugin_send/__init__.py deleted file mode 100644 index 4e4a516..0000000 --- a/plugins/alicebot_plugin_send/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import re - -from plugins.iamai_plugin_base import CommandPluginBase - -from .config import Config - - -class Send(CommandPluginBase[None, Config]): - Config = Config - - def __post_init__(self): - self.re_pattern = re.compile(r"\s*(?P<message>.*)", flags=re.I) - - async def handle(self) -> None: - try: - await self.event.adapter.send( - self.msg_match.group("message"), - "private", - self.config.send_user_id, - ) - except Exception as e: - if self.config.send_filed_msg is not None: - await self.event.reply( - self.format_str(self.config.send_filed_msg, repr(e)) - ) - else: - if self.config.send_success_msg is not None: - await self.event.reply(self.format_str(self.config.send_success_msg)) |
