From 0ed3107270494e6c780066a22f532941869e19f2 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 9 Sep 2014 14:52:39 -0400 Subject: 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 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib.rs') 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; -- cgit v1.2.3-54-g00ecf