aboutsummaryrefslogtreecommitdiff
path: root/mling/src/cli/namespace_mgr.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-24 18:20:34 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-24 18:20:34 +0800
commit979e881762a728661e72efd99bc2b35b3db8c71b (patch)
treee4866204297693f9472de64288a693590114cce8 /mling/src/cli/namespace_mgr.rs
parent0d3639016ac89ca3c6d7a8d2c8aa3b7656069e4e (diff)
Require explicit import of `crate::Next` in chained functions
Diffstat (limited to 'mling/src/cli/namespace_mgr.rs')
-rw-r--r--mling/src/cli/namespace_mgr.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/mling/src/cli/namespace_mgr.rs b/mling/src/cli/namespace_mgr.rs
index 0f11332..4ea2229 100644
--- a/mling/src/cli/namespace_mgr.rs
+++ b/mling/src/cli/namespace_mgr.rs
@@ -4,7 +4,10 @@ use mingling::{
parser::{Picker, Yes},
};
-use crate::namespace_manager::{list_namespaces, remove_namespace, set_namespace_trusted};
+use crate::{
+ Next,
+ namespace_manager::{list_namespaces, remove_namespace, set_namespace_trusted},
+};
dispatcher!("trust", TrustNamespaceCommand => TrustNamespaceEntry);
dispatcher!("untrust", UntrustNamespaceCommand => UntrustNamespaceEntry);