Reviewed-on: phoenix/icarus-models#17 Co-authored-by: KD <kundeng94@gmail.com> Co-committed-by: KD <kundeng94@gmail.com>
15 lines
434 B
Rust
15 lines
434 B
Rust
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 mod image {
|
|
pub const JPGEXTENSION: &str = ".jpg";
|
|
pub const JPEGEXTENSION: &str = ".jpeg";
|
|
pub const PNGEXTENSION: &str = ".png";
|
|
}
|
|
}
|