Skip to main content

blvm_sdk/module/ipc/
mod.rs

1//! IPC Communication
2//!
3//! IPC protocol and client for module-to-node communication.
4//!
5//! Modules communicate with the node via Inter-Process Communication (IPC)
6//! using Unix domain sockets. This module provides the protocol types and
7//! client implementation.
8
9pub mod client;
10pub mod protocol;
11
12pub use client::ModuleIpcClient;
13pub use protocol::*;