From dddc29b9c18b9d646ff18144094584e2badbe384 Mon Sep 17 00:00:00 2001 From: Kyomotoi <0w0@imki.moe> Date: Fri, 4 Nov 2022 08:52:56 +0800 Subject: =?UTF-8?q?=F0=9F=8E=A8=20=E8=B7=9F=E9=9A=8F=E5=BA=95=E5=B1=82?= =?UTF-8?q?=E7=9A=84=E6=9B=B4=E6=94=B9,=20=E8=A7=84=E8=8C=83=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E9=A3=8E=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/util/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ATRI/plugins/util/__init__.py') diff --git a/ATRI/plugins/util/__init__.py b/ATRI/plugins/util/__init__.py index 26ef570..216c916 100644 --- a/ATRI/plugins/util/__init__.py +++ b/ATRI/plugins/util/__init__.py @@ -11,10 +11,10 @@ from ATRI.service import Service from .data_source import Encrypt, Yinglish, roll_dice -utils = Service("小工具").document("非常实用(?)的工具们!") +plugin = Service("小工具").document("非常实用(?)的工具们!") -roll = utils.on_command("/roll", "骰子~用法: 1d10 或 2d10+2d10+more") +roll = plugin.on_command("/roll", "骰子~用法: 1d10 或 2d10+2d10+more") @roll.handle() @@ -35,7 +35,7 @@ async def _deal_roll(roll_msg: str = ArgPlainText("roll")): await roll.finish(msg) -encrypt_en = utils.on_command("加密", "我们之间的秘密❤") +encrypt_en = plugin.on_command("加密", "我们之间的秘密❤") @encrypt_en.handle() @@ -55,7 +55,7 @@ async def _deal_en(text: str = ArgPlainText("encr_en_text")): await encrypt_en.finish(result) -encrypt_de = utils.on_command("解密", "解开我们的秘密❤") +encrypt_de = plugin.on_command("解密", "解开我们的秘密❤") @encrypt_de.handle() @@ -72,7 +72,7 @@ async def _deal_de(text: str = ArgPlainText("encr_de_text")): await encrypt_de.finish(result) -sepi = utils.on_command("涩批一下", "将正常的句子涩一涩~") +sepi = plugin.on_command("涩批一下", "将正常的句子涩一涩~") _sepi_flmt_notice = choice(["涩批爬", "✌🥵✌"]) -- cgit v1.2.3