summaryrefslogtreecommitdiffstats
path: root/src/app/data_harvester/memory/mod.rs
blob: 25fccf59b9421e31c9cfa417b1ff599eb553d6fb (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 general;
        pub use self::general::*;
    }
}