17 lines
467 B
Rust
17 lines
467 B
Rust
//! Holds components of a Zebra node.
|
|
//!
|
|
//! Some, but not all, of these components are structured as Abscissa components,
|
|
//! while the others are just ordinary structures. This is because Abscissa's
|
|
//! component and dependency injection models are designed to work together, but
|
|
//! don't fit the async context well.
|
|
|
|
mod inbound;
|
|
pub mod mempool;
|
|
pub mod metrics;
|
|
pub mod sync;
|
|
pub mod tokio;
|
|
pub mod tracing;
|
|
|
|
pub use inbound::Inbound;
|
|
pub use sync::ChainSync;
|