Skip to main content

blvm_sdk/module/ipc/
client.rs

1//! IPC Client
2//!
3//! Re-export from blvm-node.
4//!
5//! Client-side IPC implementation that modules use to communicate with the node.
6//! `blvm-node` implements this with Unix domain sockets or Windows named pipes under the same type.
7
8pub use blvm_node::module::ipc::ModuleIpcClient;