rsiot/components/cmp_system_info/mod.rs
1//! Компонент получает системную информацию
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7mod system_info;
8
9pub use component::Cmp;
10pub use config::Config;
11pub use error::Error;
12pub use system_info::{SystemInfo, SystemInfoDisk, SystemInfoMemory, SystemInfoNetwork};
13
14type Result<T> = std::result::Result<T, Error>;