1//! Platform abstraction layer.
2//!
3//! Provides platform-specific implementations for audio capture, playback,
4//! and other OS-level features that differ between Windows, macOS, and Linux.
56#[cfg(target_os = "windows")]
7pub mod windows;
89#[cfg(not(target_os = "windows"))]
10pub mod unix;