aboutsummaryrefslogtreecommitdiff
path: root/mling/src/pkg_mgr
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-20 15:29:22 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-20 15:29:22 +0800
commit62e323c80306d7dca68e47377a0ed6f4e146ba48 (patch)
tree0c6fe91d7197c83af52b08f793d12b0f01646d7d /mling/src/pkg_mgr
parent33da7c8cb4f24caeef4e8127bc484bc9d236a0f3 (diff)
feat: remove deprecated mling scaffolding toolold-scaffolding-tool
The mling CLI tool is being rewritten, so remove all its source files, resources, and workspace membership to clean up the repository
Diffstat (limited to 'mling/src/pkg_mgr')
-rw-r--r--mling/src/pkg_mgr/installer.rs1
-rw-r--r--mling/src/pkg_mgr/mod.rs18
2 files changed, 0 insertions, 19 deletions
diff --git a/mling/src/pkg_mgr/installer.rs b/mling/src/pkg_mgr/installer.rs
deleted file mode 100644
index 8b13789..0000000
--- a/mling/src/pkg_mgr/installer.rs
+++ /dev/null
@@ -1 +0,0 @@
-
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);
-}