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

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

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

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