summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 847f0131a3670adc5232574c17601de9cfd8acce (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};
pub use message::Message;

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