aboutsummaryrefslogtreecommitdiff
path: root/mling/src/pkg_mgr/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mling/src/pkg_mgr/mod.rs')
-rw-r--r--mling/src/pkg_mgr/mod.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mling/src/pkg_mgr/mod.rs b/mling/src/pkg_mgr/mod.rs
deleted file mode 100644
index 682b433..0000000
--- a/mling/src/pkg_mgr/mod.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-use crate::ThisProgram;
-use mingling::{
- Program,
- macros::{dispatcher, program_setup},
-};
-
-pub mod installer;
-
-dispatcher!("install");
-dispatcher!("ls.namespace", CMDListNamespace => EntryListNamespace);
-dispatcher!("rm.namespace", CMDRemoveNamespace => EntryRemoveNamespace);
-
-#[program_setup]
-pub fn package_manager_setup(p: &mut Program<ThisProgram>) {
- p.with_dispatcher(CMDInstall);
- p.with_dispatcher(CMDListNamespace);
- p.with_dispatcher(CMDRemoveNamespace);
-}