summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-09-09 14:52:39 -0400
committerJesse Luehrs <doy@tozt.net>2014-09-09 14:52:39 -0400
commit0ed3107270494e6c780066a22f532941869e19f2 (patch)
treeab7b3f332561dd77253f20788e59c228e91140e2 /src/lib.rs
parent2dc11043a4403e07c00bf9402e72dcf777f3a310 (diff)
downloadrust-irc-0ed3107270494e6c780066a22f532941869e19f2.tar.gz
rust-irc-0ed3107270494e6c780066a22f532941869e19f2.zip
move callbacks out to their own trait
this reduces the amount of things users have to worry about reimplementing, since we don't have associated items yet
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 847f013..e4128c1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,7 +3,7 @@
#[phase(plugin)] extern crate regex_macros;
extern crate regex;
-pub use client::{Client, ClientBuilder};
+pub use client::{Client, ClientBuilder, ClientCallbacks};
pub use message::Message;
pub mod client;