mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-01 01:10:21 +08:00
* feat: support local plugin install * fix: make editable plugin install symlink * fix: harden local plugin install * Update tests/test_cli_plugin.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Update astrbot/cli/commands/cmd_plug.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
26 lines
491 B
Python
26 lines
491 B
Python
from .basic import (
|
|
check_astrbot_root,
|
|
check_dashboard,
|
|
get_astrbot_root,
|
|
)
|
|
from .plugin import (
|
|
PluginStatus,
|
|
build_plug_list,
|
|
get_git_repo,
|
|
install_local_plugin,
|
|
manage_plugin,
|
|
)
|
|
from .version_comparator import VersionComparator
|
|
|
|
__all__ = [
|
|
"PluginStatus",
|
|
"VersionComparator",
|
|
"build_plug_list",
|
|
"check_astrbot_root",
|
|
"check_dashboard",
|
|
"get_astrbot_root",
|
|
"get_git_repo",
|
|
"install_local_plugin",
|
|
"manage_plugin",
|
|
]
|