pub use crate::config::Config; pub use crate::error::{Error, Result}; pub use crate::file_system::FileSystem; pub use crate::file_system::FileSystemBuilder; pub use crate::snapshot::Snapshot; pub use crate::zfs::ZFS; mod config; mod error; mod file_system; mod snapshot; mod zfs; #[cfg(test)] mod tests { #[test] fn it_works() { let result = 2 + 2; assert_eq!(result, 4); } }