Merge branch 'constants' into 'main'

Added constants

See merge request kdeng00/icarus-models!22
This commit is contained in:
KD
2025-03-14 00:44:49 +00:00
2 changed files with 5 additions and 0 deletions
+4
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";
+1
View File
@@ -1,4 +1,5 @@
pub mod access_level;
pub mod constants;
pub mod login_result;
pub mod song;
pub mod token;