diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-10 23:38:47 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-10 23:38:47 +0800 |
| commit | 839326946560166da84c04d4770385795d96cff0 (patch) | |
| tree | edac8bcb0ca29e3c83eec1d9468e5b899a7f7729 /mingling/src | |
| parent | b18749170b6006e53976dbb6df9f59a3b9c34127 (diff) | |
Add completion system with shell context and dispatcher integration
Diffstat (limited to 'mingling/src')
| -rw-r--r-- | mingling/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index 7a750a2..8d0a8c2 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -80,6 +80,11 @@ 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; // Used to generate program setup pub use mingling_macros::program_setup; /// Used to print content within a `Renderer` context |
