diff --git a/src/constants.rs b/src/constants.rs index 74dc979..4a982b1 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,15 +1,14 @@ - pub mod file_extensions { pub mod audio { -pub const DEFAULTMUSICEXTENSION: &str = FLACEXTENSION; -pub const FLACEXTENSION: &str = ".flac"; -pub const WAVEXTENSION: &str = ".wav"; -pub const MPTHREEEXTENSION: &str = ".mp3"; + pub const DEFAULTMUSICEXTENSION: &str = FLACEXTENSION; + pub const FLACEXTENSION: &str = ".flac"; + pub const WAVEXTENSION: &str = ".wav"; + pub const MPTHREEEXTENSION: &str = ".mp3"; } pub mod image { -pub const JPGEXTENSION: &str = ".jpg"; -pub const JPEGEXTENSION: &str = ".jpeg"; -pub const PNGEXTENSION: &str = ".png"; + pub const JPGEXTENSION: &str = ".jpg"; + pub const JPEGEXTENSION: &str = ".jpeg"; + pub const PNGEXTENSION: &str = ".png"; } }