From be586e42eadc1185e8bf0b1088bc978cec81b33e Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 20 Jun 2026 00:20:44 +0800 Subject: Re-export Groupped trait from prelude --- mingling/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mingling') diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index f1232d3..f5c02fa 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -184,6 +184,8 @@ pub mod res; /// use mingling::prelude::*; /// ``` pub mod prelude { + /// Re-export of the `Groupped` derive macro for grouping types. + pub use crate::Groupped; /// Re-export of the `chain` macro for defining a chain of commands. pub use crate::macros::chain; /// Re-export of the `dispatcher` macro for routing commands. -- cgit