d_engine/node/
mod.rs

1//! Core node implementation for the distributed consensus system
2//!
3//! Provides the fundamental building blocks for creating and managing
4//! Raft cluster nodes with thread-safe lifecycle control and network integration
5
6mod builder;
7mod node;
8
9pub use builder::*;
10pub use node::*;
11
12#[doc(hidden)]
13mod type_config;
14#[doc(hidden)]
15pub use type_config::*;
16
17/// Test Modules
18#[cfg(test)]
19mod builder_test;
20#[cfg(test)]
21mod node_test;