pubnub-core 0.1.0

PubNub core crate, modular and composable
Documentation
use crate::data::message::Message;
use futures_channel::mpsc;

pub(crate) type Tx = mpsc::Sender<Message>;
pub(crate) type Rx = mpsc::Receiver<Message>;