1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
pub use error::{Error, Result};

pub use self::hub::*;

#[macro_use]
mod templ;

#[allow(unused_imports, non_snake_case, dead_code)]
#[allow(non_upper_case_globals, overflowing_literals)]
#[allow(non_camel_case_types)]
mod hub;

mod error;

#[cfg(test)]
mod test;