1
2
3
4
5
6
7
8
9
extern crate failure;
extern crate reqwest;
extern crate xml;

pub mod color;
pub mod error;

pub use color::{ColorScheme, ColorSchemeFormat};
pub use error::{Error, ErrorKind, Result};