10 lines
347 B
Rust
10 lines
347 B
Rust
/*! 📡 Messaging Module - P2P Communication Infrastructure
|
|
*
|
|
* This module provides the core messaging infrastructure for P2P communication
|
|
* in Nyash, implementing the MessageBus singleton pattern for local message routing.
|
|
*/
|
|
|
|
pub mod message_bus;
|
|
|
|
pub use message_bus::{BusEndpoint, IntentHandler, MessageBus, MessageBusData, SendError};
|