summaryrefslogtreecommitdiff
path: root/ATRI/plugins/plugin_test
diff options
context:
space:
mode:
authorKyomotoi <[email protected]>2020-10-31 20:01:36 +0800
committerKyomotoi <[email protected]>2020-10-31 20:01:36 +0800
commitde0426304d77ae9cbb9ffccac142176b0f1900de (patch)
tree9749f9b04cdb0d30cecced882c33c87eea77cd8e /ATRI/plugins/plugin_test
parentbebb0ecf8497755ce5be5d28884ed5d9e1eb3c79 (diff)
downloadATRI-de0426304d77ae9cbb9ffccac142176b0f1900de.tar.gz
ATRI-de0426304d77ae9cbb9ffccac142176b0f1900de.tar.bz2
ATRI-de0426304d77ae9cbb9ffccac142176b0f1900de.zip
[Update]
Diffstat (limited to 'ATRI/plugins/plugin_test')
-rw-r--r--ATRI/plugins/plugin_test/__init__.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/ATRI/plugins/plugin_test/__init__.py b/ATRI/plugins/plugin_test/__init__.py
index 5a6fe96..8ff0a28 100644
--- a/ATRI/plugins/plugin_test/__init__.py
+++ b/ATRI/plugins/plugin_test/__init__.py
@@ -16,7 +16,7 @@ from pathlib import Path
from random import sample
import nonebot
-from nonebot.plugin import on_command
+from nonebot.plugin import on_command, on_message
from nonebot.permission import SUPERUSER
from nonebot.adapters.cqhttp import Bot, Event
@@ -44,4 +44,11 @@ testBot = on_command('获取bot', permission=SUPERUSER)
@testBot.handle() # type: ignore
async def _(bot: Bot, event: Event, state: dict) -> None:
test_bot = nonebot.get_bots()
- print(test_bot, type(test_bot.keys())) \ No newline at end of file
+ print(test_bot, type(test_bot.keys()))
+
+testPrivate = on_message()
+
[email protected]() # type: ignore
+async def _(bot: Bot, event: Event, state: dict) -> None:
+ if event.user_id == "1172294279":
+ await bot.send(event, "123") \ No newline at end of file