coverart add song_id #49

Merged
phoenix merged 9 commits from coverart_add_song_id into devel 2025-07-26 16:35:52 +00:00
Showing only changes of commit cce533cdb4 - Show all commits

View File

@@ -9,6 +9,7 @@ pub struct CoverArt {
pub path: String, pub path: String,
#[serde(skip)] #[serde(skip)]
pub data: Vec<u8>, pub data: Vec<u8>,
pub song_id: uuid::Uuid,
} }
pub mod init { pub mod init {
@@ -20,6 +21,7 @@ pub mod init {
title: String::new(), title: String::new(),
path: path.clone(), path: path.clone(),
data: Vec::new(), data: Vec::new(),
song_id: uuid::Uuid::nil(),
} }
} }
} }