irc-bot 0.1.0

A library for writing Internet Relay Chat (IRC) bots in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate clap;
extern crate irc;
extern crate itertools;
extern crate uuid;

#[macro_use]
extern crate error_chain;

#[macro_use]
extern crate log;

pub use self::core::ErrorReaction;
pub use self::core::run;

pub mod core;
pub mod modules;