mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
f5f5d93b64
Co-authored-by: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
16 lines
419 B
Python
16 lines
419 B
Python
from nonebot.plugin import PluginMetadata
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
name="测试插件3",
|
|
description="测试继承适配器, 使用内置适配器全名",
|
|
usage="无法使用",
|
|
type="application",
|
|
homepage="https://nonebot.dev",
|
|
supported_adapters={
|
|
"nonebot.adapters.onebot.v11",
|
|
"nonebot.adapters.onebot.v12",
|
|
"~qq",
|
|
},
|
|
extra={"author": "NoneBot"},
|
|
)
|