summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: f7c178414befdcde446d839db369d7cc2a73f786 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#![feature(phase, globs, unboxed_closures)]

#[phase(plugin)] extern crate regex_macros;
extern crate regex;

pub use client::{Client, ClientBuilder};
pub use message::Message;

pub mod client;
pub mod constants;
pub mod message;