diskwatch 0.1.2

Single-host, read-only disk diagnostics TUI. Eight tabs across devices, volumes, filesystems, IO, SMART, hot files, and insights. Sibling to netwatch and syswatch.
pub mod devices;
pub mod filesystems;
pub mod hot_files;
pub mod io;
pub mod smart;
pub mod volumes;

#[cfg(target_os = "macos")]
pub mod iokit;

#[cfg(target_os = "macos")]
pub mod macos;

#[cfg(target_os = "linux")]
pub mod linux;

pub use devices::{DeviceKind, DeviceTick};
pub use filesystems::FsTick;
pub use io::{DeviceHistory, IoCollector, IoTick};
pub use smart::SmartCollector;
pub use volumes::VolumeTick;