mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 13:27:26 +08:00
19 lines
558 B
Python
19 lines
558 B
Python
|
from nonebot.plugin import PluginMetadata
|
||
|
from .manager import *
|
||
|
from .installer import *
|
||
|
|
||
|
|
||
|
__author__ = "snowykami"
|
||
|
__plugin_meta__ = PluginMetadata(
|
||
|
name="轻雪插件管理",
|
||
|
description="本地插件管理和插件商店支持,支持启用/停用,安装/卸载插件",
|
||
|
usage=(
|
||
|
"lnpm list\n"
|
||
|
"lnpm enable/disable <plugin_name>\n"
|
||
|
"lnpm search <keywords...>\n"
|
||
|
"lnpm install/uninstall <plugin_name>\n"
|
||
|
),
|
||
|
type="application",
|
||
|
homepage="https://github.com/snowykami/LiteyukiBot",
|
||
|
)
|