aboutsummaryrefslogtreecommitdiffstats
path: root/zone_zfs/src/lib.rs
blob: 410f47485866017407f5a00601692353cc26445d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
    }
}