//! Transport about `wasm` and `node`, use `dummy` for testing
/// Default transport use for node.
/// Dummy transport use for test.
/// Wasm transport use for browser.
pub use DefaultTransport as Transport;
pub use DummyTransport as Transport;
pub use WasmTransport as Transport;
/// Custom Promise act like Js Promise.
/// TransportManager trait and implement.