mod endpoint;
pub mod memory_transport;
pub mod transport;
#[cfg(any(unix, windows))]
mod framed;
#[cfg(unix)]
pub mod ipc_unix;
#[cfg(windows)]
pub mod ipc_windows;
pub use endpoint::{
get_or_create_channel, get_or_create_response_channel, MemoryChannel, MemoryConsumer,
MemoryPublisher, MemoryQueueConsumer, MemoryResponseChannel, MemorySubscriber,
};