Added constants

This commit is contained in:
KD
2025-03-14 00:44:49 +00:00
parent daeb208448
commit 3979a59665
2 changed files with 5 additions and 0 deletions

4
src/constants.rs Normal file
View File

@@ -0,0 +1,4 @@
pub const DEFAULT_MUSIC_EXTENSION: &str = FLAC_EXTENSION;
pub const FLAC_EXTENSION: &str = ".flac";
pub const WAV_EXTENSION: &str = ".wav";
pub const MPTHREE_EXTENSION: &str = ".mp3";

View File

@@ -1,4 +1,5 @@
pub mod access_level;
pub mod constants;
pub mod login_result;
pub mod song;
pub mod token;