pub use config::Config; pub use error::{Error, Result}; pub use file_system::FileSystem; pub use snapshot::Snapshot; pub use 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); } }