//! Browser UI for audiofiles — file browsing, import, preview, and waveform display. pub mod backend; pub mod cleanup; pub mod editor; pub mod error; pub mod export; pub mod import; pub mod instrument; pub mod preview; pub mod state; pub mod ui; pub mod waveform; #[cfg(any(target_os = "macos", target_os = "windows", target_os = "linux"))] pub mod drag_out;