diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-07 16:19:51 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-07 16:57:24 +0800 |
| commit | 81aa8266886d0dfb2961a9035a6f0b811b98be4f (patch) | |
| tree | 9492b38bb6435efe11ee71a050e4540d210ccc84 /mingling_cli/src/pkg_mgr.rs | |
| parent | 1d7efb22dc82780dc3fb1d3311188c0514d93991 (diff) | |
feat(pkg-mgr): implement pkg-show command
Add `pkg-show` to display installed packages and their versions,
removing its NOT_IMPL marker from help. Include internal commands
to load enabled package paths and completion scripts.
Diffstat (limited to 'mingling_cli/src/pkg_mgr.rs')
| -rw-r--r-- | mingling_cli/src/pkg_mgr.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mingling_cli/src/pkg_mgr.rs b/mingling_cli/src/pkg_mgr.rs index 2f947df..f244fa7 100644 --- a/mingling_cli/src/pkg_mgr.rs +++ b/mingling_cli/src/pkg_mgr.rs @@ -1,6 +1,8 @@ pub mod cmd_install; +pub mod cmd_internal_loadpkgs; pub mod cmd_pkg_disable; pub mod cmd_pkg_enable; +pub mod cmd_pkg_show; pub mod cmd_uninstall; use std::path::PathBuf; |
