summaryrefslogtreecommitdiffstats
path: root/src/app/data_harvester/memory/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/data_harvester/memory/mod.rs')
-rw-r--r--src/app/data_harvester/memory/mod.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/app/data_harvester/memory/mod.rs b/src/app/data_harvester/memory/mod.rs
new file mode 100644
index 00000000..588a3c3b
--- /dev/null
+++ b/src/app/data_harvester/memory/mod.rs
@@ -0,0 +1,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::*;
+ }
+}