mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
24 lines
635 B
Python
24 lines
635 B
Python
from nonebot.plugin import PluginMetadata
|
|
from .npm import *
|
|
from .rpm import *
|
|
|
|
__author__ = "snowykami"
|
|
__plugin_meta__ = PluginMetadata(
|
|
name="轻雪包管理器v2",
|
|
description="npm & rpm",
|
|
usage=(
|
|
"npm list\n"
|
|
"npm enable/disable <plugin_name>\n"
|
|
"npm search <keywords...>\n"
|
|
"npm install/uninstall <plugin_name>\n"
|
|
),
|
|
type="application",
|
|
homepage="https://github.com/snowykami/LiteyukiBot",
|
|
extra={
|
|
"liteyuki" : True,
|
|
"toggleable" : False,
|
|
"always_on" : True,
|
|
"default_enable": False,
|
|
}
|
|
)
|