1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
pub mod syncer; pub mod task; #[cfg(test)] mod tests { use crate::syncer::Syncer; use crate::task::Task; #[test] fn test_syncer() { let syncer = Syncer::new(); syncer.add_task(Task::new()); syncer.start() } }