//! Node Information Library
//!
//! This library provides system information collection for the current node
//! where the code is executed. It collects:
//! - System information (OS, CPU, memory, GPU, battery, host)
//! - System capabilities (hardware and OS capabilities)
//!
//! This is a standalone library that can be used by any module to collect
//! information about the current execution environment.
// Platform-specific GPU collectors
pub use NodeInfoCollector;
pub use NodeInfoError;
pub use get_hardware_uuid;
pub use *;