diff options
author | Till Hoeppner | 2015-04-21 20:54:48 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-21 20:54:48 +0200 |
commit | 9bb27a5fd0ef62874762df6d0eb180de6f351a24 (patch) | |
tree | 64da5e514889d5de586270898dac39883cb14a95 /src/lib.rs | |
parent | c67d6c211918f8b787b862bb580c41224a8d50c7 (diff) | |
download | irsc-9bb27a5fd0ef62874762df6d0eb180de6f351a24.tar.gz irsc-9bb27a5fd0ef62874762df6d0eb180de6f351a24.tar.xz irsc-9bb27a5fd0ef62874762df6d0eb180de6f351a24.zip |
Ditch convenience api, switch to byte-indexing
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -6,7 +6,7 @@ extern crate regex; extern crate log; extern crate eventual; -pub mod server; +pub mod client; pub mod color; pub mod ident; pub mod callback; @@ -17,6 +17,11 @@ pub mod reply; use std::io; use std::result; +pub use ident::Ident; +pub use message::{ Message, MsgType }; +pub use command::Command; +pub use reply::Reply; + #[derive(Debug)] pub enum IrscError { Io(io::Error), |