aboutsummaryrefslogtreecommitdiff
path: root/mling/src/pkg_mgr
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-07 19:41:57 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-07 19:41:57 +0800
commita88a4478bfa9c18d49296460b98c0512f34794c4 (patch)
treecfb5bd9a2406ba30c21af9a10476c924ae129794 /mling/src/pkg_mgr
parent50b34e06ad186a7fffff3a8c49b3f198118c87ce (diff)
Add installer module and refactor error handling
Diffstat (limited to 'mling/src/pkg_mgr')
-rw-r--r--mling/src/pkg_mgr/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/mling/src/pkg_mgr/mod.rs b/mling/src/pkg_mgr/mod.rs
index d03e1d8..030529e 100644
--- a/mling/src/pkg_mgr/mod.rs
+++ b/mling/src/pkg_mgr/mod.rs
@@ -4,6 +4,9 @@ use mingling::{
macros::{dispatcher, program_setup},
};
+mod installer;
+pub use installer::*;
+
dispatcher!("install");
dispatcher!("ls.namespace", CMDListNamespace => EntryListNamespace);
dispatcher!("rm.namespace", CMDRemoveNamespace => EntryRemoveNamespace);