summaryrefslogtreecommitdiffstats
path: root/src/app/data_harvester/disks.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/data_harvester/disks.rs')
-rw-r--r--src/app/data_harvester/disks.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/data_harvester/disks.rs b/src/app/data_harvester/disks.rs
index 6f98d3f2..ddb07073 100644
--- a/src/app/data_harvester/disks.rs
+++ b/src/app/data_harvester/disks.rs
@@ -18,8 +18,10 @@ cfg_if! {
} else if #[cfg(target_os = "macos")] {
mod unix;
pub(crate) use self::unix::*;
+ } else {
+ mod other;
+ pub(crate) use self::other::*;
}
- // TODO: Add dummy impls here for other OSes?
}
#[derive(Debug, Clone, Default)]