Duration #40

Merged
phoenix merged 10 commits from duration into devel 2025-07-04 21:45:49 +00:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit cea522d6b8 - Show all commits

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()
}