1#[macro_use] extern crate diesel; 2#[macro_use] extern crate diesel_migrations; 3 4pub mod schema; 5pub mod models; 6pub mod mappers; 7pub mod constants; 8 9pub mod connection; 10 11#[cfg(test)] 12mod tests { 13 #[test] 14 fn it_works() { 15 } 16}