coverart add song_id (#49)

Reviewed-on: #49
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
phoenix
2025-07-26 16:35:51 +00:00
committed by phoenix
parent 7839c64561
commit 1c5de9dc26
3 changed files with 4 additions and 2 deletions
+2
View File
@@ -9,6 +9,7 @@ pub struct CoverArt {
pub path: String,
#[serde(skip)]
pub data: Vec<u8>,
pub song_id: uuid::Uuid,
}
pub mod init {
@@ -20,6 +21,7 @@ pub mod init {
title: String::new(),
path: path.clone(),
data: Vec::new(),
song_id: uuid::Uuid::nil(),
}
}
}