summaryrefslogtreecommitdiffstats
path: root/src/app/data_harvester/disks/mod.rs
blob: e5a52336fe3c6b2a0cf2b0f2c4e7a9e7e2f1f43b (plain)
1
2
3
4
5
6
7
8
9
10
//! Data collection for disks (IO, usage, space, etc.).
//!
//! For Linux, macOS, and Windows, this is handled by heim.

cfg_if::cfg_if! {
    if #[cfg(any(target_os = "linux", target_os = "macos", target_os = "windows"))] {
        pub mod heim;
        pub use self::heim::*;
    }
}