Added song_id to CoverArt
All checks were successful
Rust Build / Test Suite (pull_request) Successful in 32s
Rust Build / Check (pull_request) Successful in 34s
Rust Build / Rustfmt (pull_request) Successful in 30s
Rust Build / Clippy (pull_request) Successful in 33s
Rust Build / build (pull_request) Successful in 30s

This commit is contained in:
2025-07-26 12:30:05 -04:00
parent 569fb632e5
commit cce533cdb4

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