protoflow_core/
transports.rs

1// This is free and unencumbered software released into the public domain.
2
3#[cfg(feature = "std")]
4pub type MockTransport = MpscTransport;
5
6#[cfg(feature = "std")]
7mod mpsc;
8#[cfg(feature = "std")]
9pub use mpsc::*;