Minimal subsonic functionality

This commit is contained in:
Connor Johnstone
2026-03-20 20:04:35 -04:00
parent abe321a317
commit 621355e352
19 changed files with 2107 additions and 22 deletions

View File

@@ -371,6 +371,13 @@ pub struct SavedPlaylist {
pub description: Option<String>,
}
// --- Subsonic ---
#[derive(Debug, Clone, PartialEq, Deserialize)]
pub struct SubsonicPasswordStatus {
pub set: bool,
}
// --- Config ---
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]