summaryrefslogtreecommitdiffstats
path: root/src/app/data_harvester/memory/mod.rs
blob: 588a3c3baf0c8e6757a0d427712b2dc73de7a237 (plain)
1
2
3
4
5
6
7
8
9
10
//! Data collection for memory.
//!
//! 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::*;
    }
}