aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
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),