codeuchain 1.0.1

CodeUChain Rust: High-performance implementation with memory safety and async support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*!
Core Module: Base Protocols and Traits

The foundation that AI maintains and humans rarely touch.
Contains traits, structs, and fundamental types.
*/

pub mod context;
pub mod link;
pub mod chain;
pub mod middleware;

// Re-export for convenience
pub use context::{Context, MutableContext};
pub use link::Link;
pub use chain::Chain;
pub use middleware::Middleware;