Added properties module

This commit is contained in:
2025-07-04 15:52:36 -04:00
parent f4b71de969
commit cea522d6b8
2 changed files with 10 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
pub mod meta;
pub mod properties;
pub mod types;

9
src/properties.rs Normal file
View File

@@ -0,0 +1,9 @@
#[derive(Debug, Default, Clone)]
pub struct Duration {
pub val: i32
}
pub fn get_duration(song_path: &String) -> Duration {
Duration::default()
}