//! Async channel for both browser(wasm) and native(node).
/// A Channel build with wasm feature or not.
/// - wasm features: using mpsc::UnboundedSender and mpsc::UnboundedReceiver.
/// - default fatures: using async_channel::Sender and async_channel::Receiver.
pub use AcChannel as Channel;
pub use CbChannel as Channel;