Skip to main content

confium_net/transports/
mod.rs

1//! Built-in transports.
2//!
3//! Each module registers itself with the link-time registry via
4//! [`crate::register_transport!`]. Importing this module pulls both
5//! built-in transports into the link graph; consumers that want only
6//! one can import the submodule directly.
7
8pub mod inproc;
9pub mod mock;