From 5f1ffd753af42357c8b074c7a8bc9be2eade002e Mon Sep 17 00:00:00 2001 From: Till Hoeppner Date: Mon, 20 Apr 2015 22:38:56 +0200 Subject: Add reply generation --- src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index f37c9a4..bf85c49 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![feature(plugin, collections)] +#![feature(plugin, collections, custom_derive)] #![plugin(regex_macros)] extern crate regex; @@ -11,7 +11,8 @@ pub mod color; pub mod ident; pub mod callback; pub mod message; -// pub mod command; +pub mod command; +pub mod reply; use std::io; use std::result; @@ -20,7 +21,8 @@ use std::result; pub enum IrscError { Io(io::Error), AlreadyConnected, - NotConnected + NotConnected, + NotFound } pub type Result = result::Result; -- cgit v1.2.3