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

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

pub use client::Client;

pub mod client;
mod constants;
mod message;