Added exports to data module.

This commit is contained in:
Aaron Weiss 2014-11-03 16:41:30 -05:00
parent 6db71ded01
commit 1f888281b0

View file

@ -1,6 +1,10 @@
//! Data related to IRC functionality
#![experimental]
pub use data::config::Config;
pub use data::message::Message;
pub use data::command::Command;
pub mod kinds {
//! Trait definitions of appropriate Writers and Buffers for use with this library
#![unstable]