aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTill Hoeppner2015-04-21 20:54:48 +0200
committerTill Hoeppner2015-04-21 20:54:48 +0200
commit9bb27a5fd0ef62874762df6d0eb180de6f351a24 (patch)
tree64da5e514889d5de586270898dac39883cb14a95 /src/lib.rs
parentc67d6c211918f8b787b862bb580c41224a8d50c7 (diff)
downloadirsc-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.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index aed8bc4..2ba5045 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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),