From 23b32b900423ae8fe36a50224f0308cb3d97d4d0 Mon Sep 17 00:00:00 2001 From: 简律纯 Date: Wed, 19 Apr 2023 01:23:44 +0800 Subject: 🏷bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/alicebot_plugin_send/__init__.py | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 plugins/alicebot_plugin_send/__init__.py (limited to 'plugins/alicebot_plugin_send/__init__.py') 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.*)", 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)) -- cgit v1.2.3-70-g09d2