LiteyukiBot-TriM/liteyuki/plugins/liteyuki_npm/__init__.py

25 lines
717 B
Python
Raw Normal View History

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