From 11a3258834587a267f63588366ecc00d6b82156c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 2 May 2026 01:02:23 +0800 Subject: Add architecture overview and doc comments to macro crate --- mingling_macros/src/chain.rs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'mingling_macros/src/chain.rs') diff --git a/mingling_macros/src/chain.rs b/mingling_macros/src/chain.rs index 6cc249f..a91949d 100644 --- a/mingling_macros/src/chain.rs +++ b/mingling_macros/src/chain.rs @@ -1,11 +1,3 @@ -//! Chain Attribute Macro Implementation -//! -//! This module provides the `#[chain(Group)]` attribute macro for automatically -//! generating structs that implement the `Chain` trait from functions. -//! -//! When the `async` feature is enabled, chain functions must be async functions. -//! When the `async` feature is disabled, chain functions can be regular functions. - use proc_macro::TokenStream; use quote::{ToTokens, quote}; use syn::spanned::Spanned; -- cgit