Code formatting
Some checks failed
Rust Build / Check (pull_request) Failing after 26s
Rust Build / Test Suite (pull_request) Failing after 27s
Rust Build / Rustfmt (pull_request) Successful in 30s
Rust Build / Clippy (pull_request) Failing after 31s
Rust Build / build (pull_request) Failing after 27s

This commit is contained in:
KD
2025-03-29 09:58:41 -04:00
parent 80fbd42e16
commit d68c2f44c0

View File

@@ -1,15 +1,14 @@
pub mod file_extensions { pub mod file_extensions {
pub mod audio { pub mod audio {
pub const DEFAULTMUSICEXTENSION: &str = FLACEXTENSION; pub const DEFAULTMUSICEXTENSION: &str = FLACEXTENSION;
pub const FLACEXTENSION: &str = ".flac"; pub const FLACEXTENSION: &str = ".flac";
pub const WAVEXTENSION: &str = ".wav"; pub const WAVEXTENSION: &str = ".wav";
pub const MPTHREEEXTENSION: &str = ".mp3"; pub const MPTHREEEXTENSION: &str = ".mp3";
} }
pub mod image { pub mod image {
pub const JPGEXTENSION: &str = ".jpg"; pub const JPGEXTENSION: &str = ".jpg";
pub const JPEGEXTENSION: &str = ".jpeg"; pub const JPEGEXTENSION: &str = ".jpeg";
pub const PNGEXTENSION: &str = ".png"; pub const PNGEXTENSION: &str = ".png";
} }
} }