1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Station
//!
//! This crate for IPC communication over a network with multiple machines or locally with a single
//! machine. The implemented IPC patterns are IPC via a publish-subscribe model as well as a
//! request-response model. This library aims for flexibility in the networking protocol used to
//! transmit messages.

pub(crate) mod net;

pub mod config;
pub mod process;
pub mod pubsub;
pub mod rpc;

pub use config::Config;
pub use process::Process;