LiteyukiBot/liteyuki/plugins/liteyuki_npm/__init__.py

24 lines
698 B
Python
Raw Normal View History

2024-03-18 10:21:56 +00:00
from nonebot.plugin import PluginMetadata
from .manager import *
from .installer import *
from .helper import *
2024-03-18 10:21:56 +00:00
__author__ = "snowykami"
__plugin_meta__ = PluginMetadata(
name="轻雪插件管理",
description="本地插件管理和插件商店支持,支持启用/停用,安装/卸载插件",
usage=(
2024-03-22 00:08:48 +00:00
"npm list\n"
"npm enable/disable <plugin_name>\n"
"npm search <keywords...>\n"
"npm install/uninstall <plugin_name>\n"
2024-03-18 10:21:56 +00:00
),
type="application",
homepage="https://github.com/snowykami/LiteyukiBot",
2024-03-21 06:52:02 +00:00
extra={
"liteyuki": True,
"toggleable" : False,
"default_enable" : True,
2024-03-21 06:52:02 +00:00
}
2024-03-18 10:21:56 +00:00
)