mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
12 lines
320 B
Python
12 lines
320 B
Python
|
from nonebot.plugin import PluginMetadata
|
||
|
|
||
|
__plugin_meta__ = PluginMetadata(
|
||
|
name="测试插件2",
|
||
|
description="测试继承适配器",
|
||
|
usage="无法使用",
|
||
|
type="application",
|
||
|
homepage="https://nonebot.dev",
|
||
|
supported_adapters={"~onebot.v11", "~onebot.v12"},
|
||
|
extra={"author": "NoneBot"},
|
||
|
)
|