axon/runtime/mod.rs
1//! AXON Runtime primitives (§λ-L-E Fases 3 + 5; §Fase 13.f.2 typed channels).
2//!
3//! Direct port of `axon/runtime/` sub-modules (lease_kernel, reconcile_loop,
4//! ensemble_aggregator, immune kernels). Fase 13.f.2 adds the typed
5//! channels runtime (`channels::typed::TypedEventBus`) — the Rust-runtime
6//! parity for the Python `axon/runtime/channels/typed.py` module.
7
8pub mod channels;
9pub mod ensemble_aggregator;
10pub mod immune;
11pub mod lease_kernel;
12pub mod reconcile_loop;