diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-07 16:19:51 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-09 02:56:28 +0800 |
| commit | 8c88a6c170b3429c90efa96c5f3dcb0a3e9988ae (patch) | |
| tree | 323441a4da274bae111f7563e60516d875a7db10 /mingling_cli/src/pkg_mgr.rs | |
| parent | 25ece73e61cd5a9076c63fe884c84a86b35b5b42 (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; |
