2024-05-09 13:06:04 +08:00
|
|
|
from nonebot.plugin import PluginMetadata
|
2024-05-26 17:12:06 +08:00
|
|
|
from nonebot import get_driver
|
2024-05-09 13:06:04 +08:00
|
|
|
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
|
|
name="Minecraft工具箱",
|
|
|
|
description="一些Minecraft相关工具箱",
|
|
|
|
usage="我觉得你应该会用",
|
|
|
|
type="application",
|
|
|
|
homepage="https://github.com/snowykami/LiteyukiBot",
|
|
|
|
extra={
|
|
|
|
"liteyuki" : True,
|
|
|
|
"toggleable" : True,
|
|
|
|
"default_enable": True,
|
|
|
|
}
|
2024-05-26 17:12:06 +08:00
|
|
|
)
|