nixfiles/src/utils/mod.rs

11 lines
210 B
Rust
Raw Normal View History

pub mod format_detection;
#[cfg(feature = "replaygain")]
2022-10-22 21:01:36 +01:00
pub mod replaygain;
pub mod transcoder;
2022-08-16 09:05:18 +01:00
pub mod formats;
mod music_scanner;
2022-08-16 09:05:18 +01:00
pub use formats::is_supported_file;
pub use music_scanner::scan_for_music;