blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Inter-module communication infrastructure
//!
//! Provides the infrastructure for modules to communicate with each other
//! through the node. The node acts as a mediator, routing requests and
//! validating permissions.

pub mod api;
pub mod registry;
pub mod router;

pub use api::ModuleAPI;
pub use registry::ModuleApiRegistry;
pub use router::ModuleRouter;