changed genre scanning to parse multiple genres, updated db to accommodate.

This commit is contained in:
2026-02-22 13:59:28 -05:00
parent 3947c2d6aa
commit 9cb1c6674a
24 changed files with 457 additions and 40 deletions
+11
View File
@@ -45,6 +45,11 @@ type FileType struct {
Extension string
}
type Genre struct {
ID int64
Name string
}
type PlayerState struct {
ID int64
Volume int64
@@ -95,6 +100,12 @@ type Recording struct {
Comment sql.NullString
}
type RecordingGenre struct {
ID int64
RecordingID int64
GenreID int64
}
type ReleaseGroup struct {
ID int64
Name string