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

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