diff options
Diffstat (limited to 'ATRI/plugins/plugin_link')
-rw-r--r-- | ATRI/plugins/plugin_link/__init__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ATRI/plugins/plugin_link/__init__.py b/ATRI/plugins/plugin_link/__init__.py new file mode 100644 index 0000000..029e2a8 --- /dev/null +++ b/ATRI/plugins/plugin_link/__init__.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 +# -*- encoding: utf-8 -*- + +''' +@File : __init__.py +@Time : 2020/12/05 18:40:43 +@Author : Kyomotoi +@Contact : [email protected] +@Github : https://github.com/Kyomotoi +@License : Copyright © 2018-2020 Kyomotoi, All Rights Reserved. +''' +__author__ = 'kyomotoi' + +import nonebot +from nonebot.plugin import on_command +from nonebot.typing import Bot, Event +from nonebot.permission import SUPERUSER + + +bots = nonebot.get_bots() + +testGetBot = on_command('获取bot', permission=SUPERUSER) + +async def _(bot: Bot, event: Event, state: dict) -> None: + print(bots) |