1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![recursion_limit = "1024"]

pub mod atoms;
pub mod button;
pub mod footer;

pub use atoms::*;
pub use button::Button;
pub use footer::Footer;
pub use header::Header;

#[macro_use]
extern crate log;
extern crate web_logger;