From db9afa0b06355028eafe3bc29fe0b2429ba8fd0a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 29 Mar 2026 00:52:16 +0800 Subject: Completed the first preliminary usable version of the Mingling framework. --- mingling_macros/src/node.rs | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'mingling_macros/src/node.rs') diff --git a/mingling_macros/src/node.rs b/mingling_macros/src/node.rs index 3d9473f..e56f14b 100644 --- a/mingling_macros/src/node.rs +++ b/mingling_macros/src/node.rs @@ -23,16 +23,6 @@ impl Parse for NodeInput { } } -/// Implementation of the `node` procedural macro -/// -/// # Examples -/// -/// ```ignore -/// use mingling_macros::node; -/// -/// // Creates: Node::default().join("root").join("subcommand").join("action") -/// let node = node!("root.subcommand.action"); -/// ``` pub fn node(input: TokenStream) -> TokenStream { // Parse the input as a string literal let input_parsed = syn::parse_macro_input!(input as NodeInput); -- cgit