//! A library used to represent a line-based protocol largely based on
//! key/value pairs.
//!
//! A _telegram_, represented by the Telegram struct, is an entity that
//! consists of a mandatory "topic" and zero or more key/value parameters.
//!
//! A set of "parameters", represented by the Params struct, is a set of
//! key/value pairs.
//!
//! blather handles transmission usign tokio-util's Framed framework.
pub use Codec;
pub use Error;
pub use ;
pub use Params;
pub use Telegram;
// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :