diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-29 00:52:16 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-29 00:52:28 +0800 |
| commit | db9afa0b06355028eafe3bc29fe0b2429ba8fd0a (patch) | |
| tree | 60bf74d0853fcc0c1e9363813c26109a6ca38a4f /mingling/src/lib.rs | |
| parent | 7ce68cd11516bd7cf037ecea99a92aee7c31b2c3 (diff) | |
Completed the first preliminary usable version of the Mingling
framework.
Diffstat (limited to 'mingling/src/lib.rs')
| -rw-r--r-- | mingling/src/lib.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index c172559..060fa30 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -3,6 +3,7 @@ pub use crate::any::*; pub mod error { pub use crate::asset::chain::error::*; + pub use crate::exec::error::*; } mod program; @@ -10,13 +11,19 @@ pub use crate::program::*; pub mod setup { pub use crate::program::setup::*; } +pub mod hint { + pub use crate::program::hint::*; +} #[cfg(feature = "macros")] #[allow(unused_imports)] pub mod macros { pub use mingling_macros::chain; pub use mingling_macros::chain_struct; + pub use mingling_macros::dispatcher_chain; + pub use mingling_macros::dispatcher_render; pub use mingling_macros::node; + pub use mingling_macros::program; pub use mingling_macros::r_print; pub use mingling_macros::r_println; pub use mingling_macros::renderer; @@ -30,4 +37,3 @@ pub use crate::asset::dispatcher::*; pub use crate::asset::node::*; pub use crate::asset::renderer::*; pub use crate::renderer::render_result::*; -pub use mingling_macros::Dispatcher; |
