aboutsummaryrefslogtreecommitdiff
path: root/mling/src/proj_mgr
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-07 03:13:34 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-07 03:13:34 +0800
commit3ea5d62e980975d0a888293d875f26fc267cd368 (patch)
tree04af421148a4efbb001928cce0d7d386bd94027e /mling/src/proj_mgr
parent21defab2fc95f1e1d0639b66ab2c449266a114fe (diff)
Refactor CLI entry points and move main logic to library
Diffstat (limited to 'mling/src/proj_mgr')
-rw-r--r--mling/src/proj_mgr/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mling/src/proj_mgr/mod.rs b/mling/src/proj_mgr/mod.rs
index ebc47a6..381784c 100644
--- a/mling/src/proj_mgr/mod.rs
+++ b/mling/src/proj_mgr/mod.rs
@@ -2,5 +2,5 @@ use mingling::macros::dispatcher;
dispatcher!("install");
-dispatcher!("ls.namespace");
-dispatcher!("rm.namespace");
+dispatcher!("ls.namespace", CMDListNamespace => EntryListNamespace);
+dispatcher!("rm.namespace", CMDRemoveNamespace => EntryRemoveNamespace);