1extern crate redis; 2 3pub mod job; 4pub mod queue; 5pub mod worker; 6 7#[cfg(test)] 8mod tests { 9 10 #[test] 11 fn it_works() {} 12}