aboutsummaryrefslogtreecommitdiffstats
path: root/zone_zfs/src/lib.rs
blob: 7c508610ca02a87be8483f8903c6927ed6dc19a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pub use zfs::ZFS;
pub use error::{Error, Result};
pub use file_system::FileSystem;
pub use config::Config;

pub mod config;
pub mod error;
pub mod file_system;
pub mod snapshot;
pub mod zfs;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}