other: use sysinfo for temps for android and ios (#1130)
This commit is contained in:
parent
f237babb58
commit
4cdedffaee
src/app/data_harvester
|
@ -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::*;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue