pub use crate::error::{Error, Result}; pub use crate::nspawn::NSpawn; mod error; mod machine; mod nspawn; #[cfg(test)] mod tests { #[test] fn it_works() { let result = 2 + 2; assert_eq!(result, 4); } }