Skip to main content

max / audiofiles

364 B · 17 lines History Blame Raw
1 //! Browser UI for audiofiles — file browsing, import, preview, and waveform display.
2
3 pub mod backend;
4 pub mod cleanup;
5 pub mod editor;
6 pub mod error;
7 pub mod export;
8 pub mod import;
9 pub mod instrument;
10 pub mod preview;
11 pub mod state;
12 pub mod ui;
13 pub mod waveform;
14
15 #[cfg(any(target_os = "macos", target_os = "windows", target_os = "linux"))]
16 pub mod drag_out;
17