other: use sysinfo for temps for android and ios ()

This commit is contained in:
Clement Tsang 2023-05-06 00:58:19 -04:00 committed by GitHub
parent f237babb58
commit 4cdedffaee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
src/app/data_harvester

View File

@ -7,7 +7,7 @@ cfg_if::cfg_if! {
if #[cfg(target_os = "linux")] {
pub mod linux;
pub use self::linux::*;
} else if #[cfg(any(target_os = "freebsd", target_os = "macos", target_os = "windows"))] {
} else if #[cfg(any(target_os = "freebsd", target_os = "macos", target_os = "windows", target_os = "android", target_os = "ios"))] {
pub mod sysinfo;
pub use self::sysinfo::*;
}