From 3ea5d62e980975d0a888293d875f26fc267cd368 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 7 Jun 2026 03:13:34 +0800 Subject: Refactor CLI entry points and move main logic to library --- mling/src/proj_mgr/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mling/src/proj_mgr/mod.rs') 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); -- cgit