diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-20 14:06:38 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-20 14:06:38 +0800 |
| commit | 6f66a3158f4a4b2bca42ec385abefbf4011618cc (patch) | |
| tree | 2f5193e9130c6477e413d90966babc2d60721182 /mingling/src/lib.rs | |
| parent | 2036fb58275d7fddad9c27bcceb780e8f715e5c0 (diff) | |
Move type registration to pack! and Groupped macros
Diffstat (limited to 'mingling/src/lib.rs')
| -rw-r--r-- | mingling/src/lib.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index 858b4b7..91bce8d 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -87,11 +87,13 @@ pub mod macros { pub use mingling_macros::node; /// Used to create a wrapper type for use with `Chain` and `Renderer` pub use mingling_macros::pack; - /// Internal macro for 'gen_program' used to finally generate the program - pub use mingling_macros::program_final_gen; #[cfg(feature = "comp")] /// Internal macro for 'gen_program' used to finally generate the completion structure - pub use mingling_macros::program_gen_completion; + pub use mingling_macros::program_comp_gen; + /// Internal macro for 'gen_program' used to finally generate the fallback + pub use mingling_macros::program_fallback_gen; + /// Internal macro for 'gen_program' used to finally generate the program + pub use mingling_macros::program_final_gen; // Used to generate program setup pub use mingling_macros::program_setup; /// Used to print content within a `Renderer` context |
